body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.8rem;
  }
}
/* ---- 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: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #37b34a !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #37b34a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #37b34a !important;
  border-color: #37b34a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #167ca9 !important;
  border-color: #167ca9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #167ca9 !important;
  border-color: #167ca9 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #37b34a inset !important;
  background: transparent !important;
  border: none !important;
  color: #37b34a !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: #181818 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: #82786e !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: #879a9f !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #37b34a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #136c93;
  color: #136c93;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #37b34a;
  border-color: #37b34a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #37b34a !important;
  border-color: #37b34a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #37b34a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #37b34a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #181818;
  border-color: #181818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #181818;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #82786e;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #879a9f;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #37b34a !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #37b34a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181818 !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: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #37b34a;
  border-color: #37b34a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #37b34a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ddf2fb;
}
.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: #ced6d8;
}
.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: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #37b34a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 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 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #37b34a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #37b34a;
  border-bottom-color: #37b34a;
}
.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: #37b34a !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: #181818 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  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%;
  -webkit-transform: translateX(-50%) translateY(-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='%2337b34a' %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-uRVlrsfuqT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRVlrsfuqT .nav-item:focus,
.cid-uRVlrsfuqT .nav-link:focus {
  outline: none;
}
.cid-uRVlrsfuqT .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item:active,
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item:focus {
  color: #37b34a !important;
}
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uRVlrsfuqT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRVlrsfuqT .navbar-caption:hover {
  color: inherit !important;
}
.cid-uRVlrsfuqT .container {
  max-width: 1380px;
}
.cid-uRVlrsfuqT .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uRVlrsfuqT .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uRVlrsfuqT .nav-link:hover,
.cid-uRVlrsfuqT .nav-link:active,
.cid-uRVlrsfuqT .nav-link:focus {
  border-bottom: 3px solid #37b34a;
  color: #37b34a !important;
}
.cid-uRVlrsfuqT .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uRVlrsfuqT .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uRVlrsfuqT .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uRVlrsfuqT .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRVlrsfuqT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRVlrsfuqT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRVlrsfuqT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uRVlrsfuqT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uRVlrsfuqT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRVlrsfuqT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRVlrsfuqT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRVlrsfuqT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRVlrsfuqT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRVlrsfuqT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRVlrsfuqT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRVlrsfuqT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRVlrsfuqT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uRVlrsfuqT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRVlrsfuqT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRVlrsfuqT .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRVlrsfuqT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uRVlrsfuqT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRVlrsfuqT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRVlrsfuqT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uRVlrsfuqT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRVlrsfuqT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRVlrsfuqT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uRVlrsfuqT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uRVlrsfuqT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uRVlrsfuqT .icons-menu span {
  color: #ed6436 !important;
}
.cid-uRVlrsfuqT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRVlrsfuqT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uRVlrsfuqT .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRVlrsfuqT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRVlrsfuqT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRVlrsfuqT .dropdown-item.active,
.cid-uRVlrsfuqT .dropdown-item:active {
  background-color: transparent;
}
.cid-uRVlrsfuqT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRVlrsfuqT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRVlrsfuqT .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRVlrsfuqT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uRVlrsfuqT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRVlrsfuqT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRVlrsfuqT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRVlrsfuqT .navbar-buttons {
  text-align: center;
}
.cid-uRVlrsfuqT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRVlrsfuqT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uRVlrsfuqT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRVlrsfuqT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uRVlrsfuqT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uRVlrsfuqT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRVlrsfuqT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRVlrsfuqT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uRVlrsfuqT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uRVlrsfuqT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRVlrsfuqT .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uRVlrsfuqT a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uRVlrsfuqT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRVlrsfuqT .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uRVlrsfuqT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRVlrsfuqT .navbar {
    height: 77px;
  }
  .cid-uRVlrsfuqT .navbar.opened {
    height: auto;
  }
  .cid-uRVlrsfuqT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRVlz1HxI0 {
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-uRVlz1HxI0 .row {
  overflow: hidden;
  z-index: 2;
  position: relative;
  -webkit-box-pack: end;
  justify-content: flex-end;
  pointer-events: none;
}
.cid-uRVlz1HxI0 .content {
  margin: auto 0;
  pointer-events: all;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .cid-uRVlz1HxI0 .content {
    max-width: 800px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-uRVlz1HxI0 .content {
    padding: 10rem 2rem;
    padding-bottom: 12rem;
  }
}
.cid-uRVlz1HxI0 .container {
  max-width: 1600px;
}
.cid-uRVlz1HxI0 .mbr-bold,
.cid-uRVlz1HxI0 b {
  font-weight: 900;
}
.cid-uRVlz1HxI0 .btn {
  color: white !important;
}
.cid-uRVlz1HxI0 svg {
  position: absolute;
  bottom: -25%;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%) scaleY(0.8);
  transform: translateX(-50%) scaleY(0.8);
  z-index: 1;
}
.cid-uRVlz1HxI0 svg path {
  fill: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uRVlz1HxI0 svg {
    -webkit-transform: translateX(-50%) scaleY(0.8) scaleX(1.8);
    transform: translateX(-50%) scaleY(0.8) scaleX(1.8);
  }
}
@media (max-width: 992px) {
  .cid-uRVlz1HxI0 svg {
    -webkit-transform: translateX(-50%) scaleY(0.8) scaleX(2.2);
    transform: translateX(-50%) scaleY(0.8) scaleX(2.2);
  }
}
@media (max-width: 767px) {
  .cid-uRVlz1HxI0 svg {
    -webkit-transform: translateX(-80%) scaleY(0.8) scaleX(5);
    transform: translateX(-80%) scaleY(0.8) scaleX(5);
  }
  .cid-uRVlz1HxI0 .mbr-overlay {
    opacity: 0.2 !important;
  }
}
.cid-uRYpHUajzn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uRYpHUajzn .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-uRYpHUajzn .select {
  z-index: 999;
}
.cid-uRYpHUajzn .mbr-form {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-uRYpHUajzn .mbr-form {
    max-width: 500px;
  }
}
.cid-uRYpHUajzn .img-col {
  padding: 0;
}
.cid-uRYpHUajzn form {
  padding: 2rem 2rem;
  background: #f2f2f4;
  border-radius: 30px;
}
.cid-uRYpHUajzn .jq-selectbox__dropdown,
.cid-uRYpHUajzn ul {
  border-radius: 20px !important;
}
.cid-uRYpHUajzn .jq-selectbox {
  border-radius: 30px;
}
.cid-uRYpHUajzn .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-uRYpHUajzn .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-uRYpHUajzn input,
.cid-uRYpHUajzn textarea,
.cid-uRYpHUajzn .select {
  border-radius: 30px;
}
.cid-uRYpHUajzn input,
.cid-uRYpHUajzn textarea {
  padding: 2rem 3rem;
}
.cid-uRYpHUajzn textarea {
  min-height: 10rem;
}
.cid-uRYpHUajzn .form-control,
.cid-uRYpHUajzn .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uRYpHUajzn .form-control::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input::-webkit-input-placeholder,
.cid-uRYpHUajzn .form-control::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-uRYpHUajzn .form-control:-moz-placeholder,
.cid-uRYpHUajzn .field-input:-moz-placeholder,
.cid-uRYpHUajzn .form-control:-moz-placeholder,
.cid-uRYpHUajzn .field-input:-moz-placeholder {
  color: #383838;
}
.cid-uRYpHUajzn .form-control:hover,
.cid-uRYpHUajzn .field-input:hover,
.cid-uRYpHUajzn .form-control:focus,
.cid-uRYpHUajzn .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-uRYpHUajzn .form-control:hover::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input:hover::-webkit-input-placeholder,
.cid-uRYpHUajzn .form-control:focus::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input:focus::-webkit-input-placeholder,
.cid-uRYpHUajzn .form-control:hover::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input:hover::-webkit-input-placeholder,
.cid-uRYpHUajzn .form-control:focus::-webkit-input-placeholder,
.cid-uRYpHUajzn .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-uRYpHUajzn .form-control:hover:-moz-placeholder,
.cid-uRYpHUajzn .field-input:hover:-moz-placeholder,
.cid-uRYpHUajzn .form-control:focus:-moz-placeholder,
.cid-uRYpHUajzn .field-input:focus:-moz-placeholder,
.cid-uRYpHUajzn .form-control:hover:-moz-placeholder,
.cid-uRYpHUajzn .field-input:hover:-moz-placeholder,
.cid-uRYpHUajzn .form-control:focus:-moz-placeholder,
.cid-uRYpHUajzn .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-uRYpHUajzn .jq-number__spin:hover,
.cid-uRYpHUajzn .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uRYpHUajzn .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uRYpHUajzn .jq-selectbox li,
.cid-uRYpHUajzn .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uRYpHUajzn .jq-selectbox li:hover,
.cid-uRYpHUajzn .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uRYpHUajzn .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uRYpHUajzn .jq-number__spin.minus:hover:after,
.cid-uRYpHUajzn .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uRYpHUajzn .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uRYpHUajzn .jq-number__spin.minus:after,
.cid-uRYpHUajzn .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uRYpHUajzn input::-webkit-clear-button {
  display: none;
}
.cid-uRYpHUajzn input::-webkit-inner-spin-button {
  display: none;
}
.cid-uRYpHUajzn input::-webkit-outer-spin-button {
  display: none;
}
.cid-uRYpHUajzn input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 992px) {
  .cid-uRYpHUajzn .mbr-form {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uRYpHUajzn form {
    padding: 2rem 1rem;
  }
  .cid-uRYpHUajzn .col-auto {
    margin: auto;
    width: 100%;
  }
  .cid-uRYpHUajzn .mbr-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uRYpHUajzn H4 {
  color: #ed6436;
}
.cid-uRYt1TpQRO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uRYt1TpQRO .row {
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-uRYt1TpQRO .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-uRYt1TpQRO .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-uRYt1TpQRO .icon-wrap span {
  padding-right: 1.5rem;
}
.cid-uRYt1TpQRO .icon-wrap-2 {
  padding-bottom: 2rem;
}
.cid-uRYt1TpQRO .color-col {
  background: #ed6436;
  border-radius: 30px;
  padding: 3rem 2rem;
  margin-top: 1rem;
}
.cid-uRYt1TpQRO .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-uRYt1TpQRO .mbr-iconfont {
  font-size: 4rem;
  color: #181818 !important;
  padding-bottom: 4px;
}
.cid-uRYt1TpQRO .icon-title,
.cid-uRYt1TpQRO .mbr-iconfont {
  color: #ed6436;
}
.cid-uRYt1TpQRO .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uRYt1TpQRO .content {
    margin-bottom: 2rem;
  }
  .cid-uRYt1TpQRO .row {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uRYt1TpQRO .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uRYt1TpQRO .icon-wrap {
    margin-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uRYt1TpQRO .icon-wrap span {
    padding-right: 0rem;
  }
  .cid-uRYt1TpQRO .link-wrap {
    margin: auto;
  }
  .cid-uRYt1TpQRO .color-col {
    padding: 3rem 1rem;
  }
  .cid-uRYt1TpQRO .mbr-iconfont {
    font-size: 4rem;
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
  .cid-uRYt1TpQRO .align-wrap {
    width: 100%;
    text-align: center;
  }
}
.cid-uRYt1TpQRO .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-uRYt1TpQRO .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-uRYt1TpQRO .link-wrap h3 {
  z-index: 10;
  margin: 0;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.cid-uRYt1TpQRO .link-wrap:hover {
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}
.cid-uRYt1TpQRO .mbr-text2,
.cid-uRYt1TpQRO .icon-wrap-2 {
  color: #ffffff;
}
.cid-uRYsz6GvWd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f2f2f4;
}
.cid-uRYsz6GvWd .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uRYsz6GvWd .mbr-shop .row {
  margin: 0;
}
.cid-uRYsz6GvWd .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uRYsz6GvWd .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uRYsz6GvWd .categories {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uRYsz6GvWd .mbr-gallery-item {
    width: 33.33%;
  }
}
.cid-uRYsz6GvWd li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-uRYsz6GvWd .container {
  max-width: 1400px;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-filter ul li:before {
  content: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uRYsz6GvWd .sidebar_wraper {
  padding: 1rem 0;
}
.cid-uRYsz6GvWd .galleryItem {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.cid-uRYsz6GvWd .item-title {
  padding-bottom: 0.4rem;
  font-weight: 700;
}
.cid-uRYsz6GvWd .display-5 {
  font-size: 1.4rem;
}
.cid-uRYsz6GvWd .shop-item-price,
.cid-uRYsz6GvWd .oldprice {
  font-size: 1.1rem;
  font-weight: 600 !important;
}
.cid-uRYsz6GvWd .mbr-shop .sidebar-background:after {
  background: transparent !important;
  background-color: rgba(0, 0, 0, 0.05);
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  top: -20px;
  right: 3px;
}
.cid-uRYsz6GvWd .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uRYsz6GvWd .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uRYsz6GvWd .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-uRYsz6GvWd .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uRYsz6GvWd .mbr-shop .hide-modal {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uRYsz6GvWd .mbr-shop .filter-by-pu,
.cid-uRYsz6GvWd .mbr-shop .filter-by-pd,
.cid-uRYsz6GvWd .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uRYsz6GvWd .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uRYsz6GvWd .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uRYsz6GvWd .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .galleryItem h4,
.cid-uRYsz6GvWd .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;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.cid-uRYsz6GvWd .mbr-shop .galleryItem h5,
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .galleryItem p,
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .item-button {
  text-align: center;
}
.cid-uRYsz6GvWd .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uRYsz6GvWd .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uRYsz6GvWd .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uRYsz6GvWd .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uRYsz6GvWd .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item__hided h4,
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item__hided h5,
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  display: list-item;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-uRYsz6GvWd .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uRYsz6GvWd .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uRYsz6GvWd .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uRYsz6GvWd .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uRYsz6GvWd .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;
  -moz-user-select: none;
  user-select: none;
}
.cid-uRYsz6GvWd .mbr-shop .range-controls {
  position: relative;
}
.cid-uRYsz6GvWd .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uRYsz6GvWd .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .toggle:hover,
.cid-uRYsz6GvWd .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uRYsz6GvWd .mbr-shop .min-toggle {
  left: 0;
}
.cid-uRYsz6GvWd .mbr-shop .max-toggle {
  right: 0;
}
.cid-uRYsz6GvWd .mbr-shop .hided-by-price {
  display: none;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uRYsz6GvWd .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uRYsz6GvWd .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uRYsz6GvWd .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uRYsz6GvWd .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uRYsz6GvWd .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-uRYsz6GvWd .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-uRYsz6GvWd .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uRYsz6GvWd .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uRYsz6GvWd .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uRYsz6GvWd .mbr-shop .shop-items .onsale,
.cid-uRYsz6GvWd .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uRYsz6GvWd .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uRYsz6GvWd .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uRYsz6GvWd .mbr-shop .price-range {
  display: inline-block;
}
.cid-uRYsz6GvWd .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uRYsz6GvWd .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uRYsz6GvWd .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uRYsz6GvWd .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uRYsz6GvWd .mbr-shop .categories:after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uRYsz6GvWd .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uRYsz6GvWd .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uRYsz6GvWd .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uRYsz6GvWd .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uRYsz6GvWd .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uRYsz6GvWd .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uRYsz6GvWd .clearfix:after {
    content: '';
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item {
    width: 50%;
  }
  .cid-uRYsz6GvWd .mbr-shop__row {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cid-uRYsz6GvWd .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uRYsz6GvWd .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uRYsz6GvWd .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uRYsz6GvWd .wrapper-shop-items {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .cid-uRYsz6GvWd .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uRYsz6GvWd .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uRYsz6GvWd .wrapper-shop-items,
  .cid-uRYsz6GvWd .mbr-shop__row {
    padding: 0;
  }
  .cid-uRYsz6GvWd .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uRYsz6GvWd .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uRYsz6GvWd .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uRYsz6GvWd .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uRYsz6GvWd .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uRYsz6GvWd .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uRYsz6GvWd .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uRYsz6GvWd .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uRYsz6GvWd .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uRYsz6GvWd .oldprice {
  color: #767676;
  padding-left: 0.8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRYsz6GvWd .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uRVlRguA8b {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uRVlRguA8b .mbr-text {
  color: #767676;
}
.cid-uRVlRguA8b img {
  width: 100%;
}
.cid-uRVlRguA8b .card-img {
  margin-bottom: 0rem;
}
.cid-uRVlRguA8b .card-wrapper {
  background: #f2f2f4;
  border-radius: 3px;
  overflow: hidden;
}
.cid-uRVlRguA8b .card-box {
  padding: 2rem 1rem;
}
.cid-uRVlRguA8b p {
  font-weight: 400;
}
.cid-uRVlRguA8b .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uRVlRguA8b .card {
    margin-bottom: 2rem;
  }
}
.cid-uRVlRguA8b .mbr-text,
.cid-uRVlRguA8b .mbr-section-btn {
  text-align: center;
}
.cid-uRVlRguA8b .card-title,
.cid-uRVlRguA8b .card-img {
  text-align: center;
}
.cid-uRVmoLYDah {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #37b34a;
}
.cid-uRYvge2erV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRYvge2erV .nav-item:focus,
.cid-uRYvge2erV .nav-link:focus {
  outline: none;
}
.cid-uRYvge2erV .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item:active,
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item:focus {
  color: #37b34a !important;
}
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uRYvge2erV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRYvge2erV .navbar-caption:hover {
  color: inherit !important;
}
.cid-uRYvge2erV .container {
  max-width: 1380px;
}
.cid-uRYvge2erV .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uRYvge2erV .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uRYvge2erV .nav-link:hover,
.cid-uRYvge2erV .nav-link:active,
.cid-uRYvge2erV .nav-link:focus {
  border-bottom: 3px solid #37b34a;
  color: #37b34a !important;
}
.cid-uRYvge2erV .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uRYvge2erV .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uRYvge2erV .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uRYvge2erV .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRYvge2erV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRYvge2erV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRYvge2erV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uRYvge2erV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uRYvge2erV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRYvge2erV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRYvge2erV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRYvge2erV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRYvge2erV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRYvge2erV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRYvge2erV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRYvge2erV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRYvge2erV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uRYvge2erV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRYvge2erV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRYvge2erV .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRYvge2erV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uRYvge2erV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRYvge2erV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRYvge2erV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uRYvge2erV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRYvge2erV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRYvge2erV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uRYvge2erV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uRYvge2erV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uRYvge2erV .icons-menu span {
  color: #ed6436 !important;
}
.cid-uRYvge2erV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRYvge2erV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uRYvge2erV .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRYvge2erV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRYvge2erV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRYvge2erV .dropdown-item.active,
.cid-uRYvge2erV .dropdown-item:active {
  background-color: transparent;
}
.cid-uRYvge2erV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRYvge2erV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRYvge2erV .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRYvge2erV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uRYvge2erV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRYvge2erV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRYvge2erV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRYvge2erV .navbar-buttons {
  text-align: center;
}
.cid-uRYvge2erV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRYvge2erV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uRYvge2erV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRYvge2erV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uRYvge2erV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uRYvge2erV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRYvge2erV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRYvge2erV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uRYvge2erV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uRYvge2erV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uRYvge2erV .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uRYvge2erV a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uRYvge2erV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRYvge2erV .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uRYvge2erV .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRYvge2erV .navbar {
    height: 77px;
  }
  .cid-uRYvge2erV .navbar.opened {
    height: auto;
  }
  .cid-uRYvge2erV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRYvDKigoU {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f2f2f4;
}
.cid-uRYvDKigoU .content {
  max-width: 800px;
  margin: auto 0;
  padding: 0 2rem;
}
@media (min-width: 1400px) {
  .cid-uRYvDKigoU .content {
    padding: 0 6rem;
  }
}
.cid-uRYvDKigoU .mbr-figure {
  height: 100%;
}
.cid-uRYvDKigoU img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uRYvDKigoU .img-col {
  padding: 0;
}
.cid-uRYvDKigoU .icon-wrap {
  width: fit-content;
  padding-bottom: 1.5rem;
  display: inline-block;
}
.cid-uRYvDKigoU p {
  font-weight: 700;
  line-height: 1.6;
}
.cid-uRYvDKigoU .mbr-iconfont {
  font-size: 5rem;
  color: #ed6436 !important;
}
.cid-uRYvDKigoU .icon-title,
.cid-uRYvDKigoU .mbr-iconfont {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-uRYvDKigoU .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uRYvDKigoU .icon-wrap {
    margin: auto;
  }
}
.cid-uRYvDKigoU H3 {
  color: #ed6436;
}
.cid-uRYwPtYCEO {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-uRYwPtYCEO .accordion .card {
  overflow: hidden;
}
.cid-uRYwPtYCEO .card {
  border: 1px solid lightgray !important;
  border-radius: 20px !important;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8rem 0.2rem;
}
.cid-uRYwPtYCEO .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-uRYwPtYCEO .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-uRYwPtYCEO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uRYwPtYCEO .card .card-header a.panel-title h4 {
  padding: 0.8rem 1.6rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.cid-uRYwPtYCEO .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uRYwPtYCEO .card .panel-body {
  color: #767676;
}
.cid-uRYwPtYCEO .card:hover {
  background: #f2f2f4;
}
.cid-uRYwPtYCEO .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
  background: #ed6436;
}
.cid-uRYwPtYCEO .panel-title {
  display: flex !important;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uRYwPtYCEO .mbri-arrow-down:before {
  content: '\e960';
}
.cid-uRYwPtYCEO .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-uRYwPtYCEO .panel-collapse {
  margin-top: -1px;
}
.cid-uRYwPtYCEO H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-uRYwPtYCEO .panel-text {
    padding: 0 0.5rem;
  }
  .cid-uRYwPtYCEO .icon-left {
    margin-left: 0.5rem;
  }
  .cid-uRYwPtYCEO .sign {
    margin-right: 0.5rem;
  }
}
.cid-uRYwPtYCEO .text {
  color: #181818;
}
.cid-uRZ0SRKTHl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uRZ0SRKTHl .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-uRZ0SRKTHl .content {
    padding: 0 2rem;
  }
}
.cid-uRZ0SRKTHl .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.cid-uRZ0SRKTHl .img-col {
  padding: 0;
}
.cid-uRZ0SRKTHl .icon-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-right: 2rem;
}
.cid-uRZ0SRKTHl .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-uRZ0SRKTHl .text-wrap {
  border-left: 1px solid #181818;
  padding-left: 2rem;
}
.cid-uRZ0SRKTHl .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-uRZ0SRKTHl .mbr-iconfont {
  font-size: 5rem;
  margin-right: 1.5rem;
  color: #7aba59 !important;
}
.cid-uRZ0SRKTHl .icon-title,
.cid-uRZ0SRKTHl .mbr-iconfont {
  color: #181818;
}
.cid-uRZ0SRKTHl .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uRZ0SRKTHl .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uRZ0SRKTHl .icon-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-right: 0rem;
  }
  .cid-uRZ0SRKTHl .mbr-iconfont {
    margin-bottom: 2rem;
  }
  .cid-uRZ0SRKTHl .text-wrap {
    border-left: 0px solid #181818;
    padding-left: 0rem;
  }
}
.cid-uRZ3kT4UrM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uRZ3kT4UrM .card-wrapper img {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .cid-uRZ3kT4UrM .col-md-6 {
    margin-bottom: 2rem;
  }
}
.cid-uRZ3kT4UrM .mbr-text,
.cid-uRZ3kT4UrM .mbr-section-btn {
  color: #ed6436;
}
.cid-uRYvgfS2NB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #37b34a;
}
