@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Questrial:400&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Questrial', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b30000;
  border-color: #b30000;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !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: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ff0000;
  border-color: #ff0000;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #990000;
  color: #990000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ff0000;
  border-color: #ff0000;
}
.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: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #ff0000 !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: #990000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Questrial', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0000 !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-sm3KzHe5WZ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sm3KzHe5WZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sm3KzHe5WZ a {
  font-style: normal;
}
.cid-sm3KzHe5WZ .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sm3KzHe5WZ .show {
  overflow: visible;
}
.cid-sm3KzHe5WZ .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sm3KzHe5WZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sm3KzHe5WZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sm3KzHe5WZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sm3KzHe5WZ .nav-item:focus,
.cid-sm3KzHe5WZ .nav-link:focus {
  outline: none;
}
.cid-sm3KzHe5WZ .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sm3KzHe5WZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sm3KzHe5WZ .menu-logo {
  margin-right: auto;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sm3KzHe5WZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sm3KzHe5WZ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sm3KzHe5WZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sm3KzHe5WZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sm3KzHe5WZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sm3KzHe5WZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sm3KzHe5WZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sm3KzHe5WZ .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sm3KzHe5WZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sm3KzHe5WZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sm3KzHe5WZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sm3KzHe5WZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sm3KzHe5WZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sm3KzHe5WZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sm3KzHe5WZ button.navbar-toggler:focus {
  outline: none;
}
.cid-sm3KzHe5WZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sm3KzHe5WZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sm3KzHe5WZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sm3KzHe5WZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sm3KzHe5WZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sm3KzHe5WZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sm3KzHe5WZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sm3KzHe5WZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sm3KzHe5WZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sm3KzHe5WZ .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sm3KzHe5WZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sm3KzHe5WZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.collapsing,
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sm3KzHe5WZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sm3KzHe5WZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 85vh;
  }
}
.cid-sm3KzHe5WZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sm3KzHe5WZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sm3KzHe5WZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sm3KzHe5WZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sm3KzHe5WZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sm3KzHe5WZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sm3KzHe5WZ .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-sm3KzHe5WZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sm3KzHe5WZ img {
    height: 3.8rem !important;
  }
  .cid-sm3KzHe5WZ .btn {
    display: -webkit-flex;
  }
  .cid-sm3KzHe5WZ button.navbar-toggler {
    display: block;
  }
  .cid-sm3KzHe5WZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sm3KzHe5WZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sm3KzHe5WZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sm3KzHe5WZ .navbar-collapse.collapsing,
  .cid-sm3KzHe5WZ .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sm3KzHe5WZ .navbar-collapse.collapsing .navbar-nav,
  .cid-sm3KzHe5WZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sm3KzHe5WZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sm3KzHe5WZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sm3KzHe5WZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sm3KzHe5WZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sm3KzHe5WZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sm3KzHe5WZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sm3KzHe5WZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sm3KzHe5WZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sm3KzHe5WZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sm3KzHe5WZ .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sm3KzHe5WZ .nav-link {
    justify-content: start !important;
  }
  .cid-sm3KzHe5WZ .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sm3KzHe5WZ .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sm3KzHe5WZ .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sm3KzHe5WZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sm3KzHe5WZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sm3KzHe5WZ .nav-link:hover,
.cid-sm3KzHe5WZ .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sm3KzHe5WZ .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sm3KzHe5WZ .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sm3MTDRLMA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sm3MTDRLMA .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-sm3MTDRLMA .modal-body .close {
  background: #1b1b1b;
}
.cid-sm3MTDRLMA .modal-body .close span {
  font-style: normal;
}
.cid-sm3MTDRLMA .carousel-inner > .active,
.cid-sm3MTDRLMA .carousel-inner > .next,
.cid-sm3MTDRLMA .carousel-inner > .prev {
  display: flex;
}
.cid-sm3MTDRLMA .carousel-control .icon-next,
.cid-sm3MTDRLMA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sm3MTDRLMA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sm3MTDRLMA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sm3MTDRLMA .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sm3MTDRLMA .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sm3MTDRLMA .boxed-slider > div {
  position: relative;
}
.cid-sm3MTDRLMA .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-sm3MTDRLMA .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sm3MTDRLMA .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sm3MTDRLMA .mbr-table-cell {
  padding: 0;
}
.cid-sm3MTDRLMA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sm3MTDRLMA .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sm3MTDRLMA .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sm3MTDRLMA .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-sm3MTDRLMA .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sm3MTDRLMA .carousel-item .container {
    width: 100%;
  }
}
.cid-sm3MTDRLMA .carousel-item-next.carousel-item-left,
.cid-sm3MTDRLMA .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sm3MTDRLMA .active.carousel-item-right,
.cid-sm3MTDRLMA .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sm3MTDRLMA .active.carousel-item-left,
.cid-sm3MTDRLMA .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sm3MTDRLMA .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sm3MTDRLMA .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators li.active,
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators li::after,
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sm3MTDRLMA .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sm3MTDRLMA .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sm3MTDRLMA .mbr-slider > .container img {
  width: 100%;
}
.cid-sm3MTDRLMA .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sm3MTDRLMA .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sm3MTDRLMA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sm3MTDRLMA .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sm3MTDRLMA .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sm3MTDRLMA .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sm3MTDRLMA .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sm3MTDRLMA .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-sm3MTDRLMA .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sm3MTDRLMA .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sm3MTDRLMA .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sm3MTDRLMA .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sm3MTDRLMA .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sm3MTDRLMA .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sm3MTDRLMA .carousel-inner {
  height: 100%;
}
.cid-sm3MTDRLMA .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sm3MTDRLMA .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-sm3MTDRLMA .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-sm3MTDRLMA .content-slider-wrap {
  width: 100%;
}
.cid-soJV37ErYb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soJV37ErYb .mbr-shop {
  display: table;
  width: 100%;
}
.cid-soJV37ErYb .mbr-shop .row {
  margin: 0;
}
.cid-soJV37ErYb .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-soJV37ErYb .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-soJV37ErYb .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-soJV37ErYb .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-soJV37ErYb .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-soJV37ErYb .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-soJV37ErYb .mbr-shop .hide-modal {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-soJV37ErYb .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-soJV37ErYb .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-soJV37ErYb .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-soJV37ErYb .mbr-shop .filter-by-pu,
.cid-soJV37ErYb .mbr-shop .filter-by-pd,
.cid-soJV37ErYb .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-soJV37ErYb .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-soJV37ErYb .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-soJV37ErYb .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
}
.cid-soJV37ErYb .mbr-shop .galleryItem h4,
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .galleryItem h5,
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .galleryItem p,
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .item-button {
  text-align: center;
}
.cid-soJV37ErYb .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-soJV37ErYb .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-soJV37ErYb .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-soJV37ErYb .mbr-shop .sidebar-block {
  position: relative;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-soJV37ErYb .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-soJV37ErYb .mbr-shop .onsale {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  line-height: 30px;
  padding: 7.5px 15px;
  background: #fe525b;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item__hided h4,
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item__hided h5,
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-soJV37ErYb .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-soJV37ErYb .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-soJV37ErYb .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-soJV37ErYb .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .range-controls {
  position: relative;
}
.cid-soJV37ErYb .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-soJV37ErYb .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-soJV37ErYb .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-soJV37ErYb .mbr-shop .toggle:hover,
.cid-soJV37ErYb .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-soJV37ErYb .mbr-shop .min-toggle {
  left: 0;
}
.cid-soJV37ErYb .mbr-shop .max-toggle {
  right: 0;
}
.cid-soJV37ErYb .mbr-shop .hided-by-price {
  display: none;
}
.cid-soJV37ErYb .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-soJV37ErYb .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-soJV37ErYb .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-soJV37ErYb .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-soJV37ErYb .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-soJV37ErYb .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-soJV37ErYb .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-soJV37ErYb .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-soJV37ErYb .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-soJV37ErYb .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-soJV37ErYb .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-soJV37ErYb .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-soJV37ErYb .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-soJV37ErYb .mbr-shop .shopItemsModal .onsale {
  border: 1px solid #e7e7e7;
}
.cid-soJV37ErYb .mbr-shop .shop-items .onsale,
.cid-soJV37ErYb .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-soJV37ErYb .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-soJV37ErYb .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-soJV37ErYb .mbr-shop .price-range {
  display: inline-block;
}
.cid-soJV37ErYb .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-soJV37ErYb .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-soJV37ErYb .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-soJV37ErYb .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-soJV37ErYb .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-soJV37ErYb .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-soJV37ErYb .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-soJV37ErYb .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-soJV37ErYb .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-soJV37ErYb .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-soJV37ErYb .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-soJV37ErYb .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-soJV37ErYb .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-soJV37ErYb .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-soJV37ErYb .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-soJV37ErYb .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-soJV37ErYb .wrapper-shop-items {
    order: 1;
  }
  .cid-soJV37ErYb .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-soJV37ErYb .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-soJV37ErYb .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-soJV37ErYb .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-soJV37ErYb .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-soJV37ErYb .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-soJV37ErYb .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-soJV37ErYb .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-soJV37ErYb .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-soJV37ErYb .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-soJV37ErYb .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-soJV37ErYb .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-soJV37ErYb .mbr-gallery-row {
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.cid-soJV37ErYb .mbr-gallery-item {
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper {
  padding: .5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  color: #232323;
}
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: center !important;
}
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper .item-title {
  padding-bottom: .5rem;
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper .mbr-section-btn,
.cid-soJV37ErYb .mbr-gallery-item .sidebar_wraper .price-block {
  opacity: 0;
  margin-bottom: -1rem;
}
.cid-soJV37ErYb .mbr-gallery-item:hover .style_overlay {
  background: #ffffff;
  opacity: 0.7;
  transition: all .5s;
}
.cid-soJV37ErYb .mbr-gallery-item:hover .sidebar_wraper {
  transition: all .5s;
}
.cid-soJV37ErYb .mbr-gallery-item:hover .sidebar_wraper .item-title {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-soJV37ErYb .mbr-gallery-item:hover .sidebar_wraper .item-subtitle {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-soJV37ErYb .mbr-gallery-item:hover .sidebar_wraper .mbr-section-btn,
.cid-soJV37ErYb .mbr-gallery-item:hover .sidebar_wraper .price-block {
  transition: all .5s;
  opacity: 1 ;
  margin-bottom: 0;
}
.cid-soJV37ErYb .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soJV37ErYb .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-soJS40Nuab {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-soJS40Nuab .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-soJS40Nuab .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-soJS40Nuab .form-control:focus,
.cid-soJS40Nuab .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-soJS40Nuab .form-group {
  margin-bottom: 1rem;
}
.cid-soJS40Nuab input::-webkit-input-placeholder,
.cid-soJS40Nuab textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-soJS40Nuab input:-moz-placeholder,
.cid-soJS40Nuab textarea:-moz-placeholder {
  color: #656565;
}
.cid-soJS40Nuab .jq-selectbox li,
.cid-soJS40Nuab .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-soJS40Nuab .jq-selectbox li:hover,
.cid-soJS40Nuab .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-soJS40Nuab .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-soJS40Nuab .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-soJS40Nuab .map {
  width: 100%;
  height: 30rem;
}
.cid-soJS40Nuab .map iframe {
  width: inherit;
  height: 100%;
}
.cid-soJS40Nuab .icon-block {
  margin-bottom: 10px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soJS40Nuab .icon-block .icon-block__icon {
  display: inline-block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-soJS40Nuab .icon-block .icon-block__title {
  display: inline-block;
  -webkit-align-self: center;
  align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-soJS40Nuab .mbr-text {
  color: #767676;
}
.cid-soJS40Nuab a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-soJS40Nuab .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-soJS40Nuab .input-group-btn {
  display: block;
  text-align: center;
}
.cid-soJS40Nuab textarea.form-control {
  resize: none;
}
.cid-soJS40Nuab .google-map {
  height: 25rem;
  position: relative;
}
.cid-soJS40Nuab .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-soJS40Nuab .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-soJS40Nuab .google-map[data-state] {
  background: #e9e5dc;
}
.cid-soJS40Nuab .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-soJS40Nuab h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-soJS40Nuab .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-soJS40Nuab .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-soJS40Nuab .google-map {
    padding-bottom: 2rem;
  }
}
.cid-soJT4tpqnh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-soJT4tpqnh .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-soJT4tpqnh section {
  position: relative;
}
.cid-soJT4tpqnh h4 {
  margin: 0;
}
.cid-soJT4tpqnh a {
  font-weight: 300;
}
.cid-soJT4tpqnh .row {
  align-items: center;
}
.cid-soJT4tpqnh .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-soJT4tpqnh .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-soJT4tpqnh .img1 {
  color: #ffffff;
}
.cid-soJT4tpqnh .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-soJT4tpqnh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-soJT4tpqnh .align-left,
  .cid-soJT4tpqnh .align-right {
    text-align: center;
  }
  .cid-soJT4tpqnh .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-soJT4tpqnh .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-soJT4tpqnh .item {
    padding-bottom: 0.5rem;
  }
}
.cid-soJT4tpqnh .item-title {
  color: #c1c1c1;
}
.cid-soJT4tpqnh H4 {
  color: #c1c1c1;
}
