body {
  font-family: 'IBM Plex Sans', sans-serif;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #e6c63b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #e6c63b !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  box-shadow: #e6c63b 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: #47b5ed 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  box-shadow: #e6c63b 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: #ff9966 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white {
  color: #e6c63b !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #e6c63b !important;
  box-shadow: #e6c63b 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b39617 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b39617 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e6c63b !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #e6c63b !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a68b15 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a68b15 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e6c63b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #e6c63b;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e6c63b;
  border-color: #e6c63b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e6c63b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e6c63b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e6c63b;
}
/* Forms */
.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: #e6c63b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e6c63b;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e6c63b;
  border-bottom-color: #e6c63b;
}
.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: #e6c63b !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: #8364e2 !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%;
  width: 100%;
  height: auto;
}
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='%23e6c63b' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sQknKIJ5xL {
  z-index: 1000;
  width: 100%;
}
.cid-sQknKIJ5xL .btn {
  padding: 0.3rem 2rem;
}
.cid-sQknKIJ5xL .nav-link {
  position: relative;
}
.cid-sQknKIJ5xL .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #e6c63b;
}
.cid-sQknKIJ5xL .nav-link:hover:before {
  width: 100%;
}
.cid-sQknKIJ5xL nav.navbar {
  position: fixed;
}
.cid-sQknKIJ5xL .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQknKIJ5xL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQknKIJ5xL .dropdown-item:hover,
.cid-sQknKIJ5xL .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-sQknKIJ5xL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQknKIJ5xL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQknKIJ5xL .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQknKIJ5xL .container {
  display: flex;
  margin: auto;
}
.cid-sQknKIJ5xL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown-menu,
.cid-sQknKIJ5xL .navbar.opened {
  background: #e6c63b !important;
}
.cid-sQknKIJ5xL .nav-item:focus,
.cid-sQknKIJ5xL .nav-link:focus {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQknKIJ5xL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQknKIJ5xL .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e6c63b !important;
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(230, 198, 59, 0);
}
.cid-sQknKIJ5xL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQknKIJ5xL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQknKIJ5xL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar.collapsed {
  justify-content: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQknKIJ5xL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQknKIJ5xL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sQknKIJ5xL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQknKIJ5xL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQknKIJ5xL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sQknKIJ5xL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQknKIJ5xL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQknKIJ5xL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQknKIJ5xL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQknKIJ5xL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQknKIJ5xL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQknKIJ5xL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown-item.active,
.cid-sQknKIJ5xL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQknKIJ5xL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6c63b;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQknKIJ5xL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQknKIJ5xL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQknKIJ5xL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQknKIJ5xL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: black;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQknKIJ5xL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQknKIJ5xL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQknKIJ5xL .navbar {
    height: 70px;
  }
  .cid-sQknKIJ5xL .navbar.opened {
    height: auto;
  }
  .cid-sQknKIJ5xL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQknL4woOk {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-sQknL4woOk .mbr-section-title {
  color: #000000;
}
.cid-sQknL4woOk .mbr-text,
.cid-sQknL4woOk .mbr-section-btn {
  color: #000000;
}
.cid-sQknL4woOk .mbr-section-text {
  color: #000000;
}
.cid-sQknL4woOk img {
  border-radius: 2rem;
}
.cid-sQknL4woOk .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-sQko9BkaNl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sQko9BkaNl .row {
  flex-direction: row-reverse;
}
.cid-sQko9BkaNl .mbr-section-title {
  color: #000000;
}
.cid-sQko9BkaNl .mbr-text,
.cid-sQko9BkaNl .mbr-section-btn {
  color: #000000;
}
.cid-sQko9BkaNl .mbr-section-subtitle {
  color: #8364e2;
}
.cid-sQko9BkaNl img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-sQko9BkaNl .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-sQknOmvbyo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-sQknOmvbyo .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-sQknOmvbyo .card-box {
  z-index: 2;
  position: relative;
}
.cid-sQknOmvbyo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #160830;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-iconfont-big {
  font-size: 16rem;
  color: #160830;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .card-text {
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #e6c63b;
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-sQknOmvbyo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .iconfont-wrapper {
  color: #000000;
}
.cid-sQknOmvbyo .card-text {
  color: #000000;
}
.cid-sQknOmvbyo .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uB5rcGMCIa {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uB5rcGMCIa .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #e6c63b;
  margin-bottom: 1.5rem;
}
.cid-uB5rcGMCIa .col-lg-4,
.cid-uB5rcGMCIa .col-12 {
  padding: 0 2rem;
}
.cid-uB5rcGMCIa .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uB5rcGMCIa .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uB5rcGMCIa .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uB5rcGMCIa .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uB5rcGMCIa .card-title,
.cid-uB5rcGMCIa .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uB5rcGMCIa .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uB5rcGMCIa .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uB5rcGMCIa .mbr-section-title {
  color: #000000;
}
.cid-uB5rcGMCIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5rcGMCIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMY2eE0jQ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f4f4f4;
}
.cid-uAMY2eE0jQ .mbr-iconfont {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-bottom: 1rem;
  background: linear-gradient(to left, #8364e2, #e6c63b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uAMY2eE0jQ .card-wrapper {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uAMY2eE0jQ .card-wrapper {
    padding: 0;
  }
}
.cid-uAMY2eE0jQ .card-text {
  color: #000000;
}
.cid-uAMY2eE0jQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMY2eE0jQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMY2eE0jQ .main-title {
  color: #000000;
}
.cid-uAMY2eE0jQ .card-title {
  color: #000000;
}
.cid-sQknU6PUTh {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sQknU6PUTh .item-img {
  position: relative;
}
.cid-sQknU6PUTh .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-sQknU6PUTh .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-sQknU6PUTh .btn-tag:hover,
.cid-sQknU6PUTh .btn-tag:focus {
  box-shadow: none;
}
.cid-sQknU6PUTh img,
.cid-sQknU6PUTh .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sQknU6PUTh .item:focus,
.cid-sQknU6PUTh span:focus {
  outline: none;
}
.cid-sQknU6PUTh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQknU6PUTh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sQknU6PUTh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQknU6PUTh .mbr-section-title {
  color: #232323;
}
.cid-sQknU6PUTh .mbr-text,
.cid-sQknU6PUTh .mbr-section-btn {
  color: #000000;
}
.cid-sQknU6PUTh .item-title {
  color: #000000;
}
.cid-sQknU6PUTh .item-subtitle {
  color: #000000;
}
.cid-uB5u0l7REC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uB5u0l7REC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5u0l7REC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB5u0l7REC .main-row {
  row-gap: 32px;
}
.cid-uB5u0l7REC .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .mbr-section-subtitle {
    text-align: center;
  }
}
.cid-uB5u0l7REC .mbr-text {
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .mbr-text {
    text-align: center;
  }
}
.cid-uB5u0l7REC .imgs-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .imgs-container {
    justify-content: center;
  }
}
.cid-uB5u0l7REC .img-subtitle {
  width: 100%;
  margin-bottom: 8px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .img-subtitle {
    text-align: center;
  }
}
.cid-uB5u0l7REC .img-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  width: 32px;
}
.cid-uB5u0l7REC .img-item img {
  width: 100%;
  height: 100%;
}
.cid-uB5u0l7REC .list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .list {
    align-items: center;
  }
}
.cid-uB5u0l7REC .list li {
  width: fit-content;
  max-width: 100%;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
.cid-uB5u0l7REC .list li:not(:first-child) {
  margin-top: 0.5rem;
}
.cid-uB5u0l7REC .list li:hover {
  border-bottom: 2px solid currentColor;
}
.cid-uB5u0l7REC .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uB5u0l7REC .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uB5u0l7REC form {
  width: 100%;
}
.cid-uB5u0l7REC form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC form .dragArea.row {
    justify-content: center;
  }
}
.cid-uB5u0l7REC form p {
  color: #24262b;
}
.cid-uB5u0l7REC form .form-group {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.cid-uB5u0l7REC form .form-control {
  height: 52px;
  background: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1;
  color: #24262b;
  font-weight: 400;
  transition: .3s;
}
.cid-uB5u0l7REC form .form-control::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control::-moz-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control:-ms-input-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form select {
  color: #24262b !important;
}
.cid-uB5u0l7REC form textarea {
  height: 150px !important;
  min-height: 140px !important;
  padding: 11px 16px;
  resize: none;
}
.cid-uB5u0l7REC form textarea::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea::-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea:-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea:-ms-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input,
.cid-uB5u0l7REC form textarea {
  transition: .3s all;
}
.cid-uB5u0l7REC form input:active,
.cid-uB5u0l7REC form textarea:active,
.cid-uB5u0l7REC form input:focus,
.cid-uB5u0l7REC form textarea:focus {
  background-color: #FFFFFF !important;
  border-color: #e0e0e0 !important;
  outline: none !important;
}
.cid-uB5u0l7REC form input:active::-webkit-input-placeholder,
.cid-uB5u0l7REC form textarea:active::-webkit-input-placeholder,
.cid-uB5u0l7REC form input:focus::-webkit-input-placeholder,
.cid-uB5u0l7REC form textarea:focus::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active::-moz-placeholder,
.cid-uB5u0l7REC form textarea:active::-moz-placeholder,
.cid-uB5u0l7REC form input:focus::-moz-placeholder,
.cid-uB5u0l7REC form textarea:focus::-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active:-moz-placeholder,
.cid-uB5u0l7REC form textarea:active:-moz-placeholder,
.cid-uB5u0l7REC form input:focus:-moz-placeholder,
.cid-uB5u0l7REC form textarea:focus:-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active:-ms-input-placeholder,
.cid-uB5u0l7REC form textarea:active:-ms-input-placeholder,
.cid-uB5u0l7REC form input:focus:-ms-input-placeholder,
.cid-uB5u0l7REC form textarea:focus:-ms-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form .row {
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.cid-uB5u0l7REC form .row [class*=col] {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uB5u0l7REC form .mbr-section-btn {
  margin-bottom: 16px;
  min-width: 152px;
}
@media (min-width: 768px) {
  .cid-uB5u0l7REC form .mbr-section-btn {
    padding: 0 !important;
    margin-left: -8px !important;
    margin-right: 8px !important;
  }
}
.cid-uB5u0l7REC form .mbr-section-btn .btn {
  min-height: 52px;
  border-radius: 0 !important;
}
.cid-uB5u0l7REC form label {
  width: 100%;
  color: #24262b;
  margin-bottom: 8px;
}
.cid-uB5u0l7REC form .form-check label {
  color: #24262b;
}
.cid-uB5u0l7REC form .form-check-input {
  border-color: #c1c1c1 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uB5u0l7REC form .form-check-input:focus,
.cid-uB5u0l7REC form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #24262b !important;
}
.cid-uB5u0l7REC form .form-check-input:checked {
  border-color: #24262b !important;
  background-color: #24262b !important;
}
.cid-uB5u0l7REC .form-text {
  margin-top: 16px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .form-text {
    text-align: center;
  }
}
.cid-uB5u0l7REC .col-copyright {
  margin-top: 48px;
}
.cid-uB5u0l7REC .border-item {
  width: 100%;
  height: 1px;
  background: #26292b;
  margin-bottom: 2rem;
}
.cid-uB5u0l7REC .copyright-text {
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .copyright-text {
    text-align: center;
  }
}
.cid-sQknKIJ5xL {
  z-index: 1000;
  width: 100%;
}
.cid-sQknKIJ5xL .btn {
  padding: 0.3rem 2rem;
}
.cid-sQknKIJ5xL .nav-link {
  position: relative;
}
.cid-sQknKIJ5xL .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #e6c63b;
}
.cid-sQknKIJ5xL .nav-link:hover:before {
  width: 100%;
}
.cid-sQknKIJ5xL nav.navbar {
  position: fixed;
}
.cid-sQknKIJ5xL .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQknKIJ5xL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQknKIJ5xL .dropdown-item:hover,
.cid-sQknKIJ5xL .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-sQknKIJ5xL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQknKIJ5xL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQknKIJ5xL .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQknKIJ5xL .container {
  display: flex;
  margin: auto;
}
.cid-sQknKIJ5xL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown-menu,
.cid-sQknKIJ5xL .navbar.opened {
  background: #e6c63b !important;
}
.cid-sQknKIJ5xL .nav-item:focus,
.cid-sQknKIJ5xL .nav-link:focus {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQknKIJ5xL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQknKIJ5xL .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e6c63b !important;
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(230, 198, 59, 0);
}
.cid-sQknKIJ5xL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQknKIJ5xL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQknKIJ5xL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar.collapsed {
  justify-content: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQknKIJ5xL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQknKIJ5xL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sQknKIJ5xL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQknKIJ5xL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQknKIJ5xL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sQknKIJ5xL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQknKIJ5xL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQknKIJ5xL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQknKIJ5xL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQknKIJ5xL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQknKIJ5xL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQknKIJ5xL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown-item.active,
.cid-sQknKIJ5xL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQknKIJ5xL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e6c63b;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQknKIJ5xL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQknKIJ5xL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQknKIJ5xL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQknKIJ5xL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: black;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQknKIJ5xL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQknKIJ5xL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQknKIJ5xL .navbar {
    height: 70px;
  }
  .cid-sQknKIJ5xL .navbar.opened {
    height: auto;
  }
  .cid-sQknKIJ5xL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uANwprFAn7 {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #f4f4f4;
}
.cid-uANwprFAn7 .mbr-section-title {
  text-align: center;
}
.cid-uANwprFAn7 .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-uANwprFAn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANwprFAn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANwprFAn7 .mbr-section-title,
.cid-uANwprFAn7 .mbr-section-btn {
  color: #000000;
}
.cid-uANvHIJUow {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f4f4f4;
}
.cid-uANvHIJUow .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uANvHIJUow .mbr-shop .row {
  margin: 0;
}
.cid-uANvHIJUow .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uANvHIJUow .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uANvHIJUow .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uANvHIJUow .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-uANvHIJUow .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;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uANvHIJUow .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uANvHIJUow .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uANvHIJUow .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uANvHIJUow .mbr-shop .hide-modal {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uANvHIJUow .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-uANvHIJUow .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-uANvHIJUow .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uANvHIJUow .mbr-shop .filter-by-pu,
.cid-uANvHIJUow .mbr-shop .filter-by-pd,
.cid-uANvHIJUow .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uANvHIJUow .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uANvHIJUow .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uANvHIJUow .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uANvHIJUow .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: 15px;
  width: 33%;
}
.cid-uANvHIJUow .mbr-shop .galleryItem h4,
.cid-uANvHIJUow .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin: 0;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uANvHIJUow .mbr-shop .galleryItem h5,
.cid-uANvHIJUow .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-uANvHIJUow .mbr-shop .galleryItem p,
.cid-uANvHIJUow .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-uANvHIJUow .mbr-shop .item-button {
  text-align: center;
}
.cid-uANvHIJUow .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uANvHIJUow .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uANvHIJUow .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-uANvHIJUow .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uANvHIJUow .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #f4f4f4;
  top: 0;
  right: 3px;
}
.cid-uANvHIJUow .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uANvHIJUow .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uANvHIJUow .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  top: 15px;
  left: 15px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #e6c63b;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #000000;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-item__hided h4,
.cid-uANvHIJUow .mbr-shop .mbr-gallery-item__hided h5,
.cid-uANvHIJUow .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 5px 0 0;
}
.cid-uANvHIJUow .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-uANvHIJUow .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uANvHIJUow .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uANvHIJUow .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uANvHIJUow .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uANvHIJUow .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-uANvHIJUow .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uANvHIJUow .mbr-shop .range-controls {
  position: relative;
}
.cid-uANvHIJUow .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uANvHIJUow .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-uANvHIJUow .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #66458e;
  cursor: pointer;
}
.cid-uANvHIJUow .mbr-shop .toggle:hover,
.cid-uANvHIJUow .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uANvHIJUow .mbr-shop .min-toggle {
  left: 0;
}
.cid-uANvHIJUow .mbr-shop .max-toggle {
  right: 0;
}
.cid-uANvHIJUow .mbr-shop .hided-by-price {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .text-modal {
  padding-left: 30px;
}
.cid-uANvHIJUow .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uANvHIJUow .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uANvHIJUow .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uANvHIJUow .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uANvHIJUow .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uANvHIJUow .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uANvHIJUow .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uANvHIJUow .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uANvHIJUow .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-uANvHIJUow .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-uANvHIJUow .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uANvHIJUow .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-uANvHIJUow .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-uANvHIJUow .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uANvHIJUow .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uANvHIJUow .mbr-shop .price-range {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .price-range-reset {
  display: none;
}
.cid-uANvHIJUow .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uANvHIJUow .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uANvHIJUow .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uANvHIJUow .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uANvHIJUow .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uANvHIJUow .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uANvHIJUow .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uANvHIJUow .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uANvHIJUow .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uANvHIJUow .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uANvHIJUow .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uANvHIJUow .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uANvHIJUow .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uANvHIJUow .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uANvHIJUow .mbr-shop .sidebar {
    margin-bottom: 30px;
  }
  .cid-uANvHIJUow .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-uANvHIJUow .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uANvHIJUow .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uANvHIJUow .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uANvHIJUow .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uANvHIJUow .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uANvHIJUow .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uANvHIJUow .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uANvHIJUow .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uANvHIJUow .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uANvHIJUow .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uANvHIJUow .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uANvHIJUow .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uANvHIJUow .range-controls {
  display: block !important;
}
.cid-uANvHIJUow .sort-buttons {
  display: block !important;
}
.cid-uANvHIJUow .mbr-gallery-item .sidebar_wraper {
  background-color: #f4f4f4;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uANvHIJUow .sidebar .sidebar_wraper {
  background-color: #f4f4f4;
}
.cid-uANvHIJUow .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-uANvHIJUow .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uANvHIJUow .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uANvHIJUow .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-uANvHIJUow .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uANvHIJUow .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-uANvHIJUow .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-uANvHIJUow .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-uANvHIJUow .categories {
  padding: 0;
}
.cid-uANvHIJUow .sidebar-title {
  font-weight: bold;
}
.cid-uANvIA4g3z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uANvIA4g3z .mbr-section-subtitle {
  color: #f7f4fd;
}
.cid-uANvIA4g3z ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uANvIA4g3z ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-uANvIA4g3z ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-uANvIA4g3z ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-uANvIA4g3z .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-uANvIA4g3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANvIA4g3z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANvIA4g3z .mbr-section-title {
  color: #ffffff;
}
.cid-uB5u0l7REC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uB5u0l7REC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5u0l7REC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB5u0l7REC .main-row {
  row-gap: 32px;
}
.cid-uB5u0l7REC .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .mbr-section-subtitle {
    text-align: center;
  }
}
.cid-uB5u0l7REC .mbr-text {
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .mbr-text {
    text-align: center;
  }
}
.cid-uB5u0l7REC .imgs-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .imgs-container {
    justify-content: center;
  }
}
.cid-uB5u0l7REC .img-subtitle {
  width: 100%;
  margin-bottom: 8px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .img-subtitle {
    text-align: center;
  }
}
.cid-uB5u0l7REC .img-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  width: 32px;
}
.cid-uB5u0l7REC .img-item img {
  width: 100%;
  height: 100%;
}
.cid-uB5u0l7REC .list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .list {
    align-items: center;
  }
}
.cid-uB5u0l7REC .list li {
  width: fit-content;
  max-width: 100%;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
.cid-uB5u0l7REC .list li:not(:first-child) {
  margin-top: 0.5rem;
}
.cid-uB5u0l7REC .list li:hover {
  border-bottom: 2px solid currentColor;
}
.cid-uB5u0l7REC .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uB5u0l7REC .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uB5u0l7REC form {
  width: 100%;
}
.cid-uB5u0l7REC form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC form .dragArea.row {
    justify-content: center;
  }
}
.cid-uB5u0l7REC form p {
  color: #24262b;
}
.cid-uB5u0l7REC form .form-group {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.cid-uB5u0l7REC form .form-control {
  height: 52px;
  background: #FFFFFF;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1;
  color: #24262b;
  font-weight: 400;
  transition: .3s;
}
.cid-uB5u0l7REC form .form-control::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control::-moz-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form .form-control:-ms-input-placeholder {
  color: #c1c1c1;
}
.cid-uB5u0l7REC form select {
  color: #24262b !important;
}
.cid-uB5u0l7REC form textarea {
  height: 150px !important;
  min-height: 140px !important;
  padding: 11px 16px;
  resize: none;
}
.cid-uB5u0l7REC form textarea::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea::-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea:-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form textarea:-ms-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input,
.cid-uB5u0l7REC form textarea {
  transition: .3s all;
}
.cid-uB5u0l7REC form input:active,
.cid-uB5u0l7REC form textarea:active,
.cid-uB5u0l7REC form input:focus,
.cid-uB5u0l7REC form textarea:focus {
  background-color: #FFFFFF !important;
  border-color: #e0e0e0 !important;
  outline: none !important;
}
.cid-uB5u0l7REC form input:active::-webkit-input-placeholder,
.cid-uB5u0l7REC form textarea:active::-webkit-input-placeholder,
.cid-uB5u0l7REC form input:focus::-webkit-input-placeholder,
.cid-uB5u0l7REC form textarea:focus::-webkit-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active::-moz-placeholder,
.cid-uB5u0l7REC form textarea:active::-moz-placeholder,
.cid-uB5u0l7REC form input:focus::-moz-placeholder,
.cid-uB5u0l7REC form textarea:focus::-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active:-moz-placeholder,
.cid-uB5u0l7REC form textarea:active:-moz-placeholder,
.cid-uB5u0l7REC form input:focus:-moz-placeholder,
.cid-uB5u0l7REC form textarea:focus:-moz-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form input:active:-ms-input-placeholder,
.cid-uB5u0l7REC form textarea:active:-ms-input-placeholder,
.cid-uB5u0l7REC form input:focus:-ms-input-placeholder,
.cid-uB5u0l7REC form textarea:focus:-ms-input-placeholder {
  color: #c1c1c1 !important;
}
.cid-uB5u0l7REC form .row {
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.cid-uB5u0l7REC form .row [class*=col] {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uB5u0l7REC form .mbr-section-btn {
  margin-bottom: 16px;
  min-width: 152px;
}
@media (min-width: 768px) {
  .cid-uB5u0l7REC form .mbr-section-btn {
    padding: 0 !important;
    margin-left: -8px !important;
    margin-right: 8px !important;
  }
}
.cid-uB5u0l7REC form .mbr-section-btn .btn {
  min-height: 52px;
  border-radius: 0 !important;
}
.cid-uB5u0l7REC form label {
  width: 100%;
  color: #24262b;
  margin-bottom: 8px;
}
.cid-uB5u0l7REC form .form-check label {
  color: #24262b;
}
.cid-uB5u0l7REC form .form-check-input {
  border-color: #c1c1c1 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uB5u0l7REC form .form-check-input:focus,
.cid-uB5u0l7REC form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #24262b !important;
}
.cid-uB5u0l7REC form .form-check-input:checked {
  border-color: #24262b !important;
  background-color: #24262b !important;
}
.cid-uB5u0l7REC .form-text {
  margin-top: 16px;
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .form-text {
    text-align: center;
  }
}
.cid-uB5u0l7REC .col-copyright {
  margin-top: 48px;
}
.cid-uB5u0l7REC .border-item {
  width: 100%;
  height: 1px;
  background: #26292b;
  margin-bottom: 2rem;
}
.cid-uB5u0l7REC .copyright-text {
  color: #24262b;
}
@media (max-width: 767px) {
  .cid-uB5u0l7REC .copyright-text {
    text-align: center;
  }
}
