body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.4rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'DM Sans', 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.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #2d10a3 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #fe525b !important;
}
.bg-danger {
  background-color: #b1a374 !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: #1a095d;
  border-color: #1a095d;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #2d10a3 !important;
  border-color: #2d10a3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1a095d !important;
  border-color: #1a095d !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: #1a095d !important;
  border-color: #1a095d !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: #0d6786;
  border-color: #0d6786;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !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: #0d6786 !important;
  border-color: #0d6786 !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: #59524b;
  border-color: #59524b;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !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: #59524b !important;
  border-color: #59524b !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: #eadd0a;
  border-color: #eadd0a;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !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: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !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: #fe0613;
  border-color: #fe0613;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !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: #fe0613 !important;
  border-color: #fe0613 !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: #8b7d4e;
  border-color: #8b7d4e;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #8b7d4e !important;
  border-color: #8b7d4e !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: #2d10a3;
  border-color: #2d10a3;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !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: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0b566f;
  color: #0b566f !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #149dcc;
  border-color: #149dcc;
}
.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: #149dcc !important;
  border-color: #149dcc !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: #82786e;
  border-color: #82786e;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.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: #82786e !important;
  border-color: #82786e !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: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #d2c609;
  color: #d2c609 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #3f3c03 !important;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.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: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !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: #fe525b;
  border-color: #fe525b;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.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: #fe525b !important;
  border-color: #fe525b !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: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b1a374;
  border-color: #b1a374;
}
.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: #b1a374 !important;
  border-color: #b1a374 !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: #2d10a3 !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #fe525b !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #130746 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b566f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e9010d !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #f7ed4a;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #fe525b;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #2d10a3;
  border-color: #2d10a3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2d10a3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6746ed;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #2d10a3;
}
/* 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: #2d10a3;
  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: #2d10a3;
  border-bottom-color: #2d10a3;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2d10a3 !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: #149dcc !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='%232d10a3' %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-rEvfz48qzQ {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/mbr-1920x1291.jpg");
}
.cid-rEvfz48qzQ h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rEvfz48qzQ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvfz48qzQ .btn {
  margin: 0.2rem!important;
}
@media (max-width: 767px) {
  .cid-rEvfz48qzQ h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-rEvfz48qzQ h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-rEvfz48qzQ H1 {
  text-align: right;
  color: #efefef;
}
.cid-szkUlbSeIc {
  padding-top: 10px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-szkUlbSeIc .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-szkUlbSeIc H2 {
  color: #000000;
}
.cid-szkUlbSeIc .mbr-section-subtitle,
.cid-szkUlbSeIc .mbr-section-btn {
  color: #fe525b;
}
.cid-sz9R2O807u {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sz9R2O807u .mbr-shop {
  display: table;
  width: 100%;
}
.cid-sz9R2O807u .mbr-shop .row {
  margin: 0;
}
.cid-sz9R2O807u .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-sz9R2O807u .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-sz9R2O807u .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-sz9R2O807u .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-sz9R2O807u .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-sz9R2O807u .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-sz9R2O807u .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-sz9R2O807u .mbr-shop .hide-modal {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sz9R2O807u .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sz9R2O807u .mbr-shop .filter-by-pu,
.cid-sz9R2O807u .mbr-shop .filter-by-pd,
.cid-sz9R2O807u .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-sz9R2O807u .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-sz9R2O807u .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-sz9R2O807u .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-sz9R2O807u .mbr-shop .galleryItem h4,
.cid-sz9R2O807u .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-sz9R2O807u .mbr-shop .galleryItem h5,
.cid-sz9R2O807u .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-sz9R2O807u .mbr-shop .galleryItem p,
.cid-sz9R2O807u .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-sz9R2O807u .mbr-shop .item-button {
  text-align: center;
}
.cid-sz9R2O807u .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-sz9R2O807u .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-sz9R2O807u .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-sz9R2O807u .mbr-shop .sidebar-block {
  position: relative;
}
.cid-sz9R2O807u .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-sz9R2O807u .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-sz9R2O807u .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-sz9R2O807u .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item__hided h4,
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item__hided h5,
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-sz9R2O807u .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-sz9R2O807u .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-sz9R2O807u .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-sz9R2O807u .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-sz9R2O807u .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-sz9R2O807u .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-sz9R2O807u .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-sz9R2O807u .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sz9R2O807u .mbr-shop .range-controls {
  position: relative;
}
.cid-sz9R2O807u .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-sz9R2O807u .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-sz9R2O807u .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-sz9R2O807u .mbr-shop .toggle:hover,
.cid-sz9R2O807u .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-sz9R2O807u .mbr-shop .min-toggle {
  left: 0;
}
.cid-sz9R2O807u .mbr-shop .max-toggle {
  right: 0;
}
.cid-sz9R2O807u .mbr-shop .hided-by-price {
  display: none;
}
.cid-sz9R2O807u .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-sz9R2O807u .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-sz9R2O807u .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sz9R2O807u .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-sz9R2O807u .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-sz9R2O807u .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-sz9R2O807u .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-sz9R2O807u .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-sz9R2O807u .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sz9R2O807u .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sz9R2O807u .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sz9R2O807u .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-sz9R2O807u .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-sz9R2O807u .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-sz9R2O807u .mbr-shop .shop-items .onsale,
.cid-sz9R2O807u .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-sz9R2O807u .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-sz9R2O807u .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-sz9R2O807u .mbr-shop .price-range {
  display: inline-block;
}
.cid-sz9R2O807u .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-sz9R2O807u .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-sz9R2O807u .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-sz9R2O807u .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-sz9R2O807u .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-sz9R2O807u .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-sz9R2O807u .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-sz9R2O807u .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-sz9R2O807u .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-sz9R2O807u .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-sz9R2O807u .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-sz9R2O807u .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sz9R2O807u .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-sz9R2O807u .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-sz9R2O807u .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-sz9R2O807u .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-sz9R2O807u .wrapper-shop-items {
    order: 1;
  }
  .cid-sz9R2O807u .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-sz9R2O807u .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-sz9R2O807u .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-sz9R2O807u .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-sz9R2O807u .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-sz9R2O807u .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-sz9R2O807u .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-sz9R2O807u .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-sz9R2O807u .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-sz9R2O807u .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-sz9R2O807u .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-sz9R2O807u .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-sz9R2O807u .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-sz9R2O807u .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-sz9R2O807u .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-sz9R2O807u .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-sz9R2O807u .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz9R2O807u .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rEvfzB3vnS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rEvfzB3vnS .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-rEvfzB3vnS .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rEvfzB3vnS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rEvfzB3vnS h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-rEvfzB3vnS h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvfzB3vnS h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rEvfzB3vnS .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-rEvfzB3vnS .card-overlay {
  display: none;
  background: #000000;
}
@media (min-width: 768px) {
  .cid-rEvfzB3vnS .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-rEvfzB3vnS .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rEvfzB3vnS .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rEvfzB3vnS .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rEvfzB3vnS .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rEvfzB3vnS .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rEvfzB3vnS .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rEvfzB3vnS .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rEvfzB3vnS .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-rEvfzB3vnS .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rEvfzB3vnS .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rEvfzB3vnS .card-title,
  .cid-rEvfzB3vnS .underline,
  .cid-rEvfzB3vnS .mbr-text,
  .cid-rEvfzB3vnS .mbr-section-btn,
  .cid-rEvfzB3vnS .mbr-section-subtitle,
  .cid-rEvfzB3vnS .mbr-section-title {
    text-align: center !important;
  }
  .cid-rEvfzB3vnS .wrapper {
    background-color: #000000;
  }
}
.cid-rEvfzB3vnS .mbr-section-title {
  text-align: left;
}
.cid-rEvfzB3vnS .mbr-section-title,
.cid-rEvfzB3vnS .underline {
  text-align: center;
}
.cid-rEvfzB3vnS H4 {
  color: #e1201d;
}
.cid-rEvfBGGE6S {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-rEvfBGGE6S .card-box {
  padding: 0 1.6rem;
}
.cid-rEvfBGGE6S .card {
  padding: 0rem!important;
}
@media (min-width: 767px) {
  .cid-rEvfBGGE6S .container {
    padding: 0 2.1rem;
  }
}
@media (max-width: 767px) {
  .cid-rEvfBGGE6S .container {
    padding: 0 1.8rem;
  }
  .cid-rEvfBGGE6S .mbr-section-btn {
    opacity: 1;
  }
  .cid-rEvfBGGE6S .card-wrapper {
    padding: 4rem 0rem 4rem 0rem;
  }
  .cid-rEvfBGGE6S .card {
    padding: 0rem!important;
    padding-bottom: 1rem!important;
  }
}
@media (min-width: 992px) {
  .cid-rEvfBGGE6S .card:hover .card-wrapper {
    transform: rotateY(360deg);
  }
  .cid-rEvfBGGE6S .card:hover .mbr-section-btn {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .cid-rEvfBGGE6S .card {
    padding-bottom: 1rem!important;
  }
  .cid-rEvfBGGE6S .card .mbr-section-btn {
    opacity: 1;
  }
}
.cid-rEvfBGGE6S .row {
  justify-content: center;
}
.cid-rEvfBGGE6S .mbr-section-btn {
  padding-top: 2rem;
  transition: all 1s;
  opacity: 0;
}
.cid-rEvfBGGE6S .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem!important;
}
.cid-rEvfBGGE6S .card1 {
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-rEvfBGGE6S .card2 {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-rEvfBGGE6S .card3 {
  background-image: url("../../../assets/images/mbr-1-1920x1920.jpg");
}
.cid-rEvfBGGE6S .card4 {
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-rEvfBGGE6S h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rEvfBGGE6S p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rEvfBGGE6S .card-wrapper {
  transition: all 1s;
  height: 100%;
  padding: 4rem 2rem 4rem 2rem;
  background-size: cover;
}
.cid-rEvfBGGE6S .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
.cid-rEvfBGGE6S .card-title {
  color: #44f7b3;
}
.cid-rEvfBGGE6S .mbr-text,
.cid-rEvfBGGE6S .mbr-section-btn {
  color: #fe525b;
  text-align: center;
}
.cid-rEvfCgBdGD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-rEvfCgBdGD h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-rEvfCgBdGD p {
  color: #767676;
}
.cid-rEvfCgBdGD .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #efefef;
  position: relative;
  justify-content: unset;
}
.cid-rEvfCgBdGD .card-wrapper .card-box {
  padding: 1rem 0;
  width: 100%;
}
.cid-rEvfCgBdGD .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-rEvfCgBdGD .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-rEvfCgBdGD .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-rEvfCgBdGD .card-wrapper .card-box .bottom-line p {
    margin: 1rem 0 0 0;
  }
}
.cid-rEvfCBFgG6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rEvfCBFgG6 .mbr-section-subtitle {
  color: #767676;
}
.cid-rEvfCBFgG6 .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-rEvfCBFgG6 .container {
    max-width: 1600px;
  }
}
.cid-rEvfCBFgG6 .container {
  padding: 0 2rem;
}
.cid-rEvfCBFgG6 .mbr-iconfont {
  color: #ffffff !important;
}
.cid-rEvfCBFgG6 .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-rEvfCBFgG6 .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-rEvfCBFgG6 .bg1 {
  background: #29a7c6;
}
.cid-rEvfCBFgG6 .bg2 {
  background: #ed6031;
}
.cid-rEvfCBFgG6 .bg3 {
  background: #000000;
}
.cid-rEvfCBFgG6 .bg4 {
  background: #d6952c;
}
.cid-rEvfCBFgG6 .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-rEvfCBFgG6 .team-item:hover .item-social {
  opacity: 1;
}
.cid-rEvfCBFgG6 .team-item .item-image img {
  width: 100%;
}
.cid-rEvfCBFgG6 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-rEvfCBFgG6 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-rEvfCBFgG6 .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-rEvfCBFgG6 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-rEvfCBFgG6 .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-rEvfCBFgG6 .item-caption {
    padding: 2rem 1rem;
  }
  .cid-rEvfCBFgG6 .item-social {
    opacity: 1;
  }
}
.cid-rEvfCNgHKY {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
}
.cid-rEvfCNgHKY .accordion .card {
  overflow: visible;
}
.cid-rEvfCNgHKY .mbr-iconfont {
  font-family: 'Moririse2' !important;
  font-size: 1rem!important;
}
.cid-rEvfCNgHKY .mbri-arrow-down:before {
  content: "\e960";
}
.cid-rEvfCNgHKY .panel-text {
  padding: 1rem;
}
.cid-rEvfCNgHKY .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rEvfCNgHKY .card .card-header {
  border-radius: 0px;
  border: 1px solid lightgray;
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
}
.cid-rEvfCNgHKY .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-rEvfCNgHKY .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rEvfCNgHKY .card .card-header a.panel-title h4 {
  padding: 1.2rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-rEvfCNgHKY .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rEvfCNgHKY .card .panel-body {
  color: #767676;
}
.cid-rEvfCNgHKY .panel-collapse {
  border: 1px solid lightgray;
  margin-top: -1px;
}
.cid-rEvfCNgHKY H4 {
  color: #767676;
}
.cid-rEvfDb7OmE {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rEvfDb7OmE .image-block {
  margin: auto;
  height: 400px;
  overflow: hidden;
}
.cid-rEvfDb7OmE .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rEvfDb7OmE .image-block:hover:before {
  opacity: 0.2;
}
.cid-rEvfDb7OmE .image-block:hover .wrap {
  opacity: 1;
}
.cid-rEvfDb7OmE h4 {
  letter-spacing: 2px;
}
.cid-rEvfDb7OmE figcaption {
  position: relative;
}
.cid-rEvfDb7OmE figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rEvfDb7OmE img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-rEvfDb7OmE .card {
  padding: 0;
}
@media (max-width: 767px) {
  .cid-rEvfDb7OmE .wrap {
    opacity: 1!important;
  }
  .cid-rEvfDb7OmE .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-rEvfF5lB7r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rEvfF5lB7r .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rEvfF5lB7r .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rEvfF5lB7r .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rEvfF5lB7r .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rEvfF5lB7r .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rEvfF5lB7r .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rEvfF5lB7r .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rEvfF5lB7r .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rEvfF5lB7r .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rEvfF5lB7r .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rEvfF5lB7r .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rEvfF5lB7r .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rEvfF5lB7r .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rEvfF5lB7r .media-container-row .row-copirayt p {
  width: 100%;
}
