@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: #ffffff;
}
.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: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #66458e;
  border-bottom-color: #66458e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #66458e !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: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2366458e' %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-rKhGIgrEcY .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rKhGIgrEcY .nav-item,
.cid-rKhGIgrEcY .nav-link,
.cid-rKhGIgrEcY .navbar-caption {
  font-weight: normal;
}
.cid-rKhGIgrEcY .nav-item:focus,
.cid-rKhGIgrEcY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rKhGIgrEcY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rKhGIgrEcY .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rKhGIgrEcY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rKhGIgrEcY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rKhGIgrEcY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rKhGIgrEcY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rKhGIgrEcY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rKhGIgrEcY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rKhGIgrEcY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rKhGIgrEcY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rKhGIgrEcY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-rKhGIgrEcY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rKhGIgrEcY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rKhGIgrEcY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rKhGIgrEcY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rKhGIgrEcY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rKhGIgrEcY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rKhGIgrEcY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rKhGIgrEcY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rKhGIgrEcY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rKhGIgrEcY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rKhGIgrEcY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rKhGIgrEcY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rKhGIgrEcY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rKhGIgrEcY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rKhGIgrEcY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rKhGIgrEcY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rKhGIgrEcY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rKhGIgrEcY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rKhGIgrEcY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rKhGIgrEcY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rKhGIgrEcY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rKhGIgrEcY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rKhGIgrEcY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rKhGIgrEcY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rKhGIgrEcY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rKhGIgrEcY .dropdown-item.active,
.cid-rKhGIgrEcY .dropdown-item:active {
  background-color: transparent;
}
.cid-rKhGIgrEcY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rKhGIgrEcY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rKhGIgrEcY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rKhGIgrEcY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rKhGIgrEcY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rKhGIgrEcY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rKhGIgrEcY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rKhGIgrEcY .navbar-buttons {
  text-align: center;
}
.cid-rKhGIgrEcY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKhGIgrEcY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rKhGIgrEcY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rKhGIgrEcY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rKhGIgrEcY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rKhGIgrEcY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rKhGIgrEcY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rKhGIgrEcY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rKhGIgrEcY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rKhGIgrEcY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rKhGIgrEcY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rKhGIgrEcY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhGIgrEcY .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rKhGIgrEcY .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhGIgrEcY .soc-item {
  margin: .5rem .3rem;
}
.cid-rKhGIgrEcY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhGIgrEcY a.nav-link,
.cid-rKhGIgrEcY a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rKhGIgrEcY a.nav-link .mbr-iconfont-btn,
.cid-rKhGIgrEcY a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rKhGIgrEcY a.nav-link:hover .mbr-iconfont-btn,
.cid-rKhGIgrEcY a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rKhGIgrEcY a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhGIgrEcY .navbar {
    height: 77px;
  }
  .cid-rKhGIgrEcY .navbar.opened {
    height: auto;
  }
  .cid-rKhGIgrEcY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rKhGJhG3el {
  background-image: url("../../../commerce/images/background1.jpg");
}
.cid-rKhGJhG3el .mbr-overlay {
  background: #879a9f;
}
.cid-rKhGJhG3el .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rKhGK7p3RE {
  overflow: hidden !important;
  background-image: url("../../../commerce/images/background2.jpg");
}
.cid-rKhGK7p3RE .container-fluid {
  padding: 0 3rem;
}
.cid-rKhGK7p3RE .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rKhGK7p3RE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rKhGORnG9K {
  background-image: url("../../../commerce/images/background3.jpg");
}
.cid-rKhGORnG9K .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rKhGORnG9K .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rKhGORnG9K .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rKhGORnG9K .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rKhGORnG9K .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rKhGORnG9K .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rKhGORnG9K .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-rKhGORnG9K input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rKhGORnG9K input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rKhGORnG9K .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rKhGORnG9K .mbr-section-subtitle {
  color: #e96188;
}
.cid-rKhGORnG9K .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rKhGORnG9K .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rKhGORnG9K .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rKhGORnG9K .underline .line {
    height: 2px;
  }
  .cid-rKhGORnG9K .text-element {
    padding-bottom: 1rem;
  }
  .cid-rKhGORnG9K .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rKhGORnG9K .mbr-section-subtitle,
  .cid-rKhGORnG9K .mbr-section-title,
  .cid-rKhGORnG9K .mbr-text,
  .cid-rKhGORnG9K .mbr-section-btn,
  .cid-rKhGORnG9K .form-title,
  .cid-rKhGORnG9K .form-subtitle,
  .cid-rKhGORnG9K .input-group-btn,
  .cid-rKhGORnG9K .form-text {
    text-align: center !important;
  }
}
.cid-rKhGPSRAY8 {
  overflow: hidden !important;
  background: linear-gradient(to right, #ec6963 0%, #ec6963 30%, #66458e 30%, #66458e 100%);
}
.cid-rKhGPSRAY8 .animated-element {
  color: #efefef;
}
.cid-rKhGPSRAY8 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKhGPSRAY8 .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-rKhGPSRAY8 .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rKhGPSRAY8 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-rKhGPSRAY8 {
    background: #66458e;
  }
  .cid-rKhGPSRAY8 .img-block {
    padding-bottom: 2rem;
  }
}
.cid-rKhGRjo2rK {
  overflow: hidden !important;
}
.cid-rKhGRjo2rK .animated-element {
  color: #efefef;
}
.cid-rKhGRjo2rK .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKhGRjo2rK .mbr-section-subtitle {
  color: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-rKhGRjo2rK .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rKhGRjo2rK .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-rKhGRjo2rK .img-block {
    padding-bottom: 2rem;
  }
}
.cid-rKhGRQnOWo {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../commerce/images/background5.jpg");
}
@media (max-width: 768px) {
  .cid-rKhGRQnOWo .mbr-text,
  .cid-rKhGRQnOWo .mbr-section-subtitle,
  .cid-rKhGRQnOWo .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rKhGSBGbEx {
  background-image: url("../../../commerce/images/background7.jpg");
}
.cid-rKhGSBGbEx .mbr-section-subtitle {
  color: #66458e;
}
.cid-rKhGSBGbEx .mbr-section-title,
.cid-rKhGSBGbEx .mbr-text,
.cid-rKhGSBGbEx .icon-description {
  color: #465052;
}
.cid-rKhGSBGbEx .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rKhGSBGbEx .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rKhGSBGbEx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rKhGSBGbEx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rKhGSBGbEx a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rKhGSBGbEx a.close:hover {
  color: #ffffff;
}
.cid-rKhGSBGbEx .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rKhGSBGbEx .btn-play {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #66458e;
  width: 60px;
  height: 60px;
  border: 1px solid #66458e;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rKhGSBGbEx .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s btn-video linear infinite;
  animation: 1s btn-video linear infinite;
}
@media (min-width: 768px) {
  .cid-rKhGSBGbEx .mbr-section-btn {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-rKhGSBGbEx .mbr-section-subtitle,
  .cid-rKhGSBGbEx .mbr-section-title,
  .cid-rKhGSBGbEx .mbr-text {
    text-align: center !important;
  }
  .cid-rKhGSBGbEx .mbr-media {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rKhGSBGbEx .btn-play {
    margin-bottom: 2rem;
  }
}
@keyframes btn-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes btn-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-rKhGTu3tuA {
  padding-top: 150px;
  background-image: url("../../../commerce/images/background11.jpg");
}
.cid-rKhGTu3tuA .text-content {
  padding-bottom: 60px;
}
.cid-rKhGTu3tuA .content-container .btn-bgr {
  z-index: 0;
}
.cid-rKhGTu3tuA .box-item-text {
  color: #767676;
}
.cid-rKhGTu3tuA .box-item {
  padding: 2.5rem;
}
.cid-rKhGTu3tuA .box-item:first-child {
  background-color: #ffffff;
}
.cid-rKhGTu3tuA .box-item:nth-child(2) {
  background-color: #efefef;
}
.cid-rKhGTu3tuA .box-item:last-child {
  background-color: #ffffff;
}
.cid-rKhGTu3tuA .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rKhGTu3tuA .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rKhGTu3tuA .box-list li:last-child {
  border-bottom: none;
}
.cid-rKhGTu3tuA .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rKhGTu3tuA .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-rKhGTu3tuA .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-rKhGTu3tuA .mbr-section-subtitle,
  .cid-rKhGTu3tuA .mbr-section-title,
  .cid-rKhGTu3tuA .mbr-text,
  .cid-rKhGTu3tuA .mbr-section-btn,
  .cid-rKhGTu3tuA .icon-block-top,
  .cid-rKhGTu3tuA .box-item-title,
  .cid-rKhGTu3tuA .box-item-text {
    text-align: center !important;
  }
}
.cid-rKhGU53FZF {
  background-image: url("../../../commerce/images/background14.jpg");
}
.cid-rKhGU53FZF .mbr-overlay {
  background: #879a9f;
}
.cid-rKhGU53FZF .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-rKhGU53FZF .mbr-section-subtitle {
  color: #232323;
}
.cid-rKhGUNo2FI {
  overflow: hidden !important;
  background: linear-gradient(to right, #00ac6d 0%, #00ac6d 30%, #4e84c2 30%, #4e84c2 100%);
}
.cid-rKhGUNo2FI .animated-element {
  color: #efefef;
}
.cid-rKhGUNo2FI .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKhGUNo2FI .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-rKhGUNo2FI .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rKhGUNo2FI .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-rKhGUNo2FI {
    background: #4e84c2;
  }
  .cid-rKhGUNo2FI .img-block {
    padding-bottom: 2rem;
  }
}
.cid-rKhGW4A3Xk {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-rKhGW4A3Xk .container-fluid {
  padding: 0 3rem;
}
.cid-rKhGW4A3Xk .image-block {
  position: relative;
  margin: auto;
}
.cid-rKhGW4A3Xk .image-block img {
  width: 100%;
}
.cid-rKhGW4A3Xk .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rKhGW4A3Xk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rKhGW4A3Xk .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-rKhGW4A3Xk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rKhGWz2IkH {
  background: #ffffff;
}
.cid-rKhGWz2IkH .container-fluid {
  padding: 0 3rem;
}
.cid-rKhGWz2IkH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rKhGWz2IkH .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rKhGWz2IkH .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKhGWz2IkH .image-block {
    width: 100% !important;
  }
}
.cid-rKhGXlyn4V {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rKhGXlyn4V .container-fluid {
  padding: 0 3rem;
}
.cid-rKhGXlyn4V .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rKhGXlyn4V .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKhGXlyn4V .video-block {
    width: 100% !important;
  }
}
.cid-rKhGY4fvBw {
  background: #ffffff;
}
.cid-rKhGY4fvBw .container-fluid {
  padding: 0 3rem;
}
.cid-rKhGY4fvBw .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rKhGY4fvBw .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKhGY4fvBw .video-block {
    width: 100% !important;
  }
}
.cid-rKhGYMlmAu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhGYMlmAu .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhGYMlmAu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rKhGYMlmAu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rKhGYMlmAu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rKhGYMlmAu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rKhGYMlmAu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rKhGYMlmAu .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rKhGYMlmAu .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhGYMlmAu .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rKhGYMlmAu .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhGYMlmAu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rKhGYMlmAu ul {
  font-size: 0;
}
.cid-rKhGYMlmAu .mbr-gallery-filter ul {
  text-align: left;
}
.cid-rKhGYMlmAu .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rKhGYMlmAu .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rKhGYMlmAu .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-rKhGYMlmAu .mbr-gallery-filter ul li:first-child,
.cid-rKhGYMlmAu .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-rKhGYMlmAu .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-rKhGYMlmAu .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rKhGYMlmAu .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-rKhGYMlmAu .btn.active:after {
  animation: none;
}
.cid-rKhGYMlmAu .btn:active {
  box-shadow: none !important;
}
.cid-rKhGYMlmAu .btn:hover {
  background: transparent !important;
}
.cid-rKhGYMlmAu .btn:hover:before {
  background: transparent !important;
}
.cid-rKhGYMlmAu .btn:before {
  background-color: transparent !important;
}
.cid-rKhGYMlmAu .btn:focus {
  box-shadow: none !important;
}
.cid-rKhGZuapSJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background12.jpg");
}
.cid-rKhGZuapSJ .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhGZuapSJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rKhGZuapSJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rKhGZuapSJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rKhGZuapSJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rKhGZuapSJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-rKhGZuapSJ .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rKhGZuapSJ .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhGZuapSJ .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-rKhGZuapSJ .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhGZuapSJ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rKhGZuapSJ ul {
  font-size: 0;
}
.cid-rKhGZuapSJ .mbr-gallery-filter ul {
  text-align: center;
}
.cid-rKhGZuapSJ .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rKhGZuapSJ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rKhGZuapSJ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-rKhGZuapSJ .mbr-gallery-filter ul li:first-child,
.cid-rKhGZuapSJ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-rKhGZuapSJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-rKhGZuapSJ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rKhGZuapSJ .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-rKhGZuapSJ .btn.active:after {
  animation: none;
}
.cid-rKhGZuapSJ .btn:active {
  box-shadow: none !important;
}
.cid-rKhGZuapSJ .btn:hover {
  background: transparent !important;
}
.cid-rKhGZuapSJ .btn:hover:before {
  background: transparent !important;
}
.cid-rKhGZuapSJ .btn:before {
  background-color: transparent !important;
}
.cid-rKhGZuapSJ .btn:focus {
  box-shadow: none !important;
}
.cid-rKhH0jsKKX .modal-body .close {
  background: #1b1b1b;
}
.cid-rKhH0jsKKX .modal-body .close span {
  font-style: normal;
}
.cid-rKhH0jsKKX .carousel-inner > .active,
.cid-rKhH0jsKKX .carousel-inner > .next,
.cid-rKhH0jsKKX .carousel-inner > .prev {
  display: table;
}
.cid-rKhH0jsKKX .carousel-control .icon-next,
.cid-rKhH0jsKKX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rKhH0jsKKX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rKhH0jsKKX .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rKhH0jsKKX .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rKhH0jsKKX .boxed-slider > div {
  position: relative;
}
.cid-rKhH0jsKKX .container img {
  width: 100%;
}
.cid-rKhH0jsKKX .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rKhH0jsKKX .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rKhH0jsKKX .mbr-table-cell {
  padding: 0;
}
.cid-rKhH0jsKKX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rKhH0jsKKX .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rKhH0jsKKX .mbr-overlay {
  z-index: 1;
}
.cid-rKhH0jsKKX .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rKhH0jsKKX .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rKhH0jsKKX .carousel-item .container {
    width: 100%;
  }
}
.cid-rKhH0jsKKX .carousel-item-next.carousel-item-left,
.cid-rKhH0jsKKX .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rKhH0jsKKX .active.carousel-item-right,
.cid-rKhH0jsKKX .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rKhH0jsKKX .active.carousel-item-left,
.cid-rKhH0jsKKX .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rKhH0jsKKX .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rKhH0jsKKX .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators li.active,
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators li::after,
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rKhH0jsKKX .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rKhH0jsKKX .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rKhH0jsKKX .mbr-slider > .container img {
  width: 100%;
}
.cid-rKhH0jsKKX .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rKhH0jsKKX .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rKhH0jsKKX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rKhH0jsKKX .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rKhH0jsKKX .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rKhH0jsKKX .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rKhH0jsKKX .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rKhH0jsKKX .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rKhH0jsKKX .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rKhH0jsKKX .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rKhH0jsKKX .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rKhH0jsKKX .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rKhH0jsKKX .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rKhH1CP5gp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKhH1CP5gp .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-rKhH1CP5gp .modal-body .close {
  background: #1b1b1b;
}
.cid-rKhH1CP5gp .modal-body .close span {
  font-style: normal;
}
.cid-rKhH1CP5gp .carousel-inner > .active,
.cid-rKhH1CP5gp .carousel-inner > .next,
.cid-rKhH1CP5gp .carousel-inner > .prev {
  display: flex;
}
.cid-rKhH1CP5gp .carousel-control .icon-next,
.cid-rKhH1CP5gp .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rKhH1CP5gp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rKhH1CP5gp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rKhH1CP5gp .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rKhH1CP5gp .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rKhH1CP5gp .boxed-slider > div {
  position: relative;
}
.cid-rKhH1CP5gp .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rKhH1CP5gp .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rKhH1CP5gp .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rKhH1CP5gp .mbr-table-cell {
  padding: 0;
}
.cid-rKhH1CP5gp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rKhH1CP5gp .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rKhH1CP5gp .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-rKhH1CP5gp .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-rKhH1CP5gp .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rKhH1CP5gp .carousel-item .container {
    width: 100%;
  }
}
.cid-rKhH1CP5gp .carousel-item-next.carousel-item-left,
.cid-rKhH1CP5gp .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rKhH1CP5gp .active.carousel-item-right,
.cid-rKhH1CP5gp .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rKhH1CP5gp .active.carousel-item-left,
.cid-rKhH1CP5gp .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rKhH1CP5gp .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-rKhH1CP5gp .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators li.active,
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators li::after,
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rKhH1CP5gp .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rKhH1CP5gp .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rKhH1CP5gp .mbr-slider > .container img {
  width: 100%;
}
.cid-rKhH1CP5gp .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rKhH1CP5gp .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rKhH1CP5gp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rKhH1CP5gp .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rKhH1CP5gp .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rKhH1CP5gp .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-rKhH1CP5gp .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rKhH1CP5gp .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rKhH1CP5gp .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rKhH1CP5gp .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rKhH1CP5gp .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rKhH1CP5gp .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rKhH1CP5gp .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rKhH1CP5gp .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rKhH1CP5gp .carousel-inner {
  height: 100%;
}
.cid-rKhH1CP5gp .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rKhH1CP5gp .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-rKhH1CP5gp .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-rKhH1CP5gp .content-slider-wrap {
  width: 100%;
}
.cid-rKhH2yplRu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhH2yplRu .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rKhH2yplRu .mbr-shop .row {
  margin: 0;
}
.cid-rKhH2yplRu .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rKhH2yplRu .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rKhH2yplRu .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rKhH2yplRu .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rKhH2yplRu .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rKhH2yplRu .mbr-shop .hide-modal {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rKhH2yplRu .mbr-shop .filter-by-pu,
.cid-rKhH2yplRu .mbr-shop .filter-by-pd,
.cid-rKhH2yplRu .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rKhH2yplRu .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rKhH2yplRu .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rKhH2yplRu .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .galleryItem h4,
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .galleryItem h5,
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .galleryItem p,
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .item-button {
  text-align: center;
}
.cid-rKhH2yplRu .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rKhH2yplRu .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rKhH2yplRu .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-rKhH2yplRu .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rKhH2yplRu .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #f7f7f7;
  top: 0;
  right: 3px;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rKhH2yplRu .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: #66458e;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #ffffff;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-item__hided h4,
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-item__hided h5,
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 10px 0 0;
}
.cid-rKhH2yplRu .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-rKhH2yplRu .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rKhH2yplRu .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rKhH2yplRu .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rKhH2yplRu .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .range-controls {
  position: relative;
}
.cid-rKhH2yplRu .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rKhH2yplRu .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .toggle:hover,
.cid-rKhH2yplRu .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rKhH2yplRu .mbr-shop .min-toggle {
  left: 0;
}
.cid-rKhH2yplRu .mbr-shop .max-toggle {
  right: 0;
}
.cid-rKhH2yplRu .mbr-shop .hided-by-price {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .text-modal {
  padding-left: 30px;
}
.cid-rKhH2yplRu .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rKhH2yplRu .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rKhH2yplRu .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rKhH2yplRu .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rKhH2yplRu .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rKhH2yplRu .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rKhH2yplRu .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rKhH2yplRu .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rKhH2yplRu .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-rKhH2yplRu .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-rKhH2yplRu .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rKhH2yplRu .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-rKhH2yplRu .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-rKhH2yplRu .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rKhH2yplRu .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rKhH2yplRu .mbr-shop .price-range {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .price-range-reset {
  display: none;
}
.cid-rKhH2yplRu .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rKhH2yplRu .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rKhH2yplRu .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rKhH2yplRu .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rKhH2yplRu .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rKhH2yplRu .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rKhH2yplRu .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rKhH2yplRu .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rKhH2yplRu .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rKhH2yplRu .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rKhH2yplRu .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rKhH2yplRu .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rKhH2yplRu .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rKhH2yplRu .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rKhH2yplRu .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rKhH2yplRu .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rKhH2yplRu .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rKhH2yplRu .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rKhH2yplRu .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rKhH2yplRu .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rKhH2yplRu .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rKhH2yplRu .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rKhH2yplRu .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rKhH2yplRu .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rKhH2yplRu .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhH2yplRu .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rKhH2yplRu .range-controls {
  display: block !important;
}
.cid-rKhH2yplRu .mbr-gallery-item .sidebar_wraper {
  background-color: #f7f7f7;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH2yplRu .sidebar .sidebar_wraper {
  background-color: #f7f7f7;
}
.cid-rKhH2yplRu .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-rKhH2yplRu .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH2yplRu .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhH2yplRu .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-rKhH2yplRu .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rKhH2yplRu .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-rKhH2yplRu .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-rKhH2yplRu .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-rKhH2yplRu .categories {
  padding: 0;
}
.cid-rKhH2yplRu .sidebar-title {
  font-weight: bold;
}
.cid-rKhH3aOwQO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhH3aOwQO .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rKhH3aOwQO .mbr-shop .row {
  margin: 0;
}
.cid-rKhH3aOwQO .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rKhH3aOwQO .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rKhH3aOwQO .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rKhH3aOwQO .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rKhH3aOwQO .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rKhH3aOwQO .mbr-shop .hide-modal {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rKhH3aOwQO .mbr-shop .filter-by-pu,
.cid-rKhH3aOwQO .mbr-shop .filter-by-pd,
.cid-rKhH3aOwQO .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rKhH3aOwQO .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rKhH3aOwQO .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rKhH3aOwQO .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .galleryItem h4,
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .galleryItem h5,
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .galleryItem p,
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .item-button {
  text-align: center;
}
.cid-rKhH3aOwQO .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rKhH3aOwQO .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rKhH3aOwQO .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-rKhH3aOwQO .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rKhH3aOwQO .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #f7f7f7;
  top: 0;
  right: 3px;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rKhH3aOwQO .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: #fac769;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #000000;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item__hided h4,
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item__hided h5,
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 10px 0 0;
}
.cid-rKhH3aOwQO .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-rKhH3aOwQO .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rKhH3aOwQO .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rKhH3aOwQO .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rKhH3aOwQO .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .range-controls {
  position: relative;
}
.cid-rKhH3aOwQO .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rKhH3aOwQO .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .toggle:hover,
.cid-rKhH3aOwQO .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rKhH3aOwQO .mbr-shop .min-toggle {
  left: 0;
}
.cid-rKhH3aOwQO .mbr-shop .max-toggle {
  right: 0;
}
.cid-rKhH3aOwQO .mbr-shop .hided-by-price {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rKhH3aOwQO .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rKhH3aOwQO .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rKhH3aOwQO .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rKhH3aOwQO .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rKhH3aOwQO .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-rKhH3aOwQO .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-rKhH3aOwQO .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rKhH3aOwQO .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-rKhH3aOwQO .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-rKhH3aOwQO .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rKhH3aOwQO .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rKhH3aOwQO .mbr-shop .price-range {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .price-range-reset {
  display: none;
}
.cid-rKhH3aOwQO .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rKhH3aOwQO .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rKhH3aOwQO .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rKhH3aOwQO .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rKhH3aOwQO .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rKhH3aOwQO .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rKhH3aOwQO .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rKhH3aOwQO .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rKhH3aOwQO .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rKhH3aOwQO .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rKhH3aOwQO .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rKhH3aOwQO .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rKhH3aOwQO .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rKhH3aOwQO .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rKhH3aOwQO .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rKhH3aOwQO .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rKhH3aOwQO .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rKhH3aOwQO .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rKhH3aOwQO .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rKhH3aOwQO .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rKhH3aOwQO .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rKhH3aOwQO .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rKhH3aOwQO .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rKhH3aOwQO .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhH3aOwQO .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rKhH3aOwQO .range-controls {
  display: block !important;
}
.cid-rKhH3aOwQO .mbr-gallery-item .sidebar_wraper {
  background-color: #fac769;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH3aOwQO .sidebar .sidebar_wraper {
  background-color: #f7f7f7;
}
.cid-rKhH3aOwQO .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-rKhH3aOwQO .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH3aOwQO .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhH3aOwQO .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-rKhH3aOwQO .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rKhH3aOwQO .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-rKhH3aOwQO .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-rKhH3aOwQO .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-rKhH3aOwQO .categories {
  padding: 0;
}
.cid-rKhH3aOwQO .sidebar-title {
  font-weight: bold;
}
.cid-rKhH3JcF1Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rKhH3JcF1Y .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rKhH3JcF1Y .mbr-shop .row {
  margin: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rKhH3JcF1Y .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rKhH3JcF1Y .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rKhH3JcF1Y .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rKhH3JcF1Y .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rKhH3JcF1Y .mbr-shop .hide-modal {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rKhH3JcF1Y .mbr-shop .filter-by-pu,
.cid-rKhH3JcF1Y .mbr-shop .filter-by-pd,
.cid-rKhH3JcF1Y .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rKhH3JcF1Y .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rKhH3JcF1Y .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rKhH3JcF1Y .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .galleryItem h4,
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .galleryItem h5,
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .galleryItem p,
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .item-button {
  text-align: center;
}
.cid-rKhH3JcF1Y .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rKhH3JcF1Y .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rKhH3JcF1Y .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-rKhH3JcF1Y .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rKhH3JcF1Y .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #f7f7f7;
  top: 0;
  right: 3px;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rKhH3JcF1Y .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: #66458e;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #ffffff;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item__hided h4,
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item__hided h5,
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 10px 0 0;
}
.cid-rKhH3JcF1Y .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-rKhH3JcF1Y .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rKhH3JcF1Y .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rKhH3JcF1Y .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rKhH3JcF1Y .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .range-controls {
  position: relative;
}
.cid-rKhH3JcF1Y .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rKhH3JcF1Y .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .toggle:hover,
.cid-rKhH3JcF1Y .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rKhH3JcF1Y .mbr-shop .min-toggle {
  left: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .max-toggle {
  right: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .hided-by-price {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rKhH3JcF1Y .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rKhH3JcF1Y .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rKhH3JcF1Y .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rKhH3JcF1Y .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rKhH3JcF1Y .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-rKhH3JcF1Y .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-rKhH3JcF1Y .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rKhH3JcF1Y .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-rKhH3JcF1Y .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-rKhH3JcF1Y .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rKhH3JcF1Y .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rKhH3JcF1Y .mbr-shop .price-range {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .price-range-reset {
  display: none;
}
.cid-rKhH3JcF1Y .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rKhH3JcF1Y .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rKhH3JcF1Y .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rKhH3JcF1Y .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rKhH3JcF1Y .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rKhH3JcF1Y .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rKhH3JcF1Y .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rKhH3JcF1Y .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rKhH3JcF1Y .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rKhH3JcF1Y .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rKhH3JcF1Y .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rKhH3JcF1Y .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rKhH3JcF1Y .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rKhH3JcF1Y .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rKhH3JcF1Y .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rKhH3JcF1Y .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rKhH3JcF1Y .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rKhH3JcF1Y .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rKhH3JcF1Y .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rKhH3JcF1Y .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rKhH3JcF1Y .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rKhH3JcF1Y .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rKhH3JcF1Y .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhH3JcF1Y .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rKhH3JcF1Y .range-controls {
  display: block !important;
}
.cid-rKhH3JcF1Y .sort-buttons {
  display: block !important;
}
.cid-rKhH3JcF1Y .mbr-gallery-item .sidebar_wraper {
  background-color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH3JcF1Y .sidebar .sidebar_wraper {
  background-color: #f7f7f7;
}
.cid-rKhH3JcF1Y .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-rKhH3JcF1Y .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-rKhH3JcF1Y .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhH3JcF1Y .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-rKhH3JcF1Y .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rKhH3JcF1Y .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-rKhH3JcF1Y .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-rKhH3JcF1Y .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-rKhH3JcF1Y .categories {
  padding: 0;
}
.cid-rKhH3JcF1Y .sidebar-title {
  font-weight: bold;
}
.cid-rKhH581sUV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhH581sUV .card {
  display: block;
  position: relative;
}
.cid-rKhH581sUV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rKhH581sUV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rKhH581sUV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rKhH581sUV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rKhH581sUV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rKhH581sUV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rKhH581sUV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rKhH5IWt9R {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-rKhH5IWt9R .card {
  display: block;
  position: relative;
}
.cid-rKhH5IWt9R .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rKhH5IWt9R .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rKhH5IWt9R .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rKhH5IWt9R .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #e96188;
}
.cid-rKhH5IWt9R .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rKhH5IWt9R .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rKhH5IWt9R .mbr-card-text {
  margin: 0;
}
.cid-rKhH5IWt9R .mbr-section-title {
  text-align: center;
}
.cid-rKhH6MBw9T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background6.jpg");
}
.cid-rKhH6MBw9T .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhH6MBw9T .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rKhH6MBw9T .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rKhH6MBw9T .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rKhH6MBw9T .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rKhH6MBw9T .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rKhH6MBw9T .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rKhH6MBw9T .mbr-card-text {
  margin: 0;
}
.cid-rKhH7DquC5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background11.jpg");
}
.cid-rKhH7DquC5 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhH7DquC5 .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-rKhH7DquC5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rKhH7DquC5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rKhH7DquC5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ca4336;
}
.cid-rKhH7DquC5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rKhH7DquC5 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rKhH7DquC5 .mbr-card-text {
  margin: 0;
}
.cid-rKhH7DquC5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-rKhHaVXved {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHaVXved .mbr-text,
.cid-rKhHaVXved .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHaVXved .card-title {
  color: #66458e;
}
.cid-rKhHaVXved .card .card-img span {
  color: #66458e;
  font-size: 60px;
  background: linear-gradient(45deg, #66458e, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rKhHaVXved .mbr-section-subtitle,
  .cid-rKhHaVXved .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhHaVXved .card .card-img span {
    background: none;
  }
}
.cid-rKhH8QY1Lr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhH8QY1Lr .mbr-text,
.cid-rKhH8QY1Lr .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhH8QY1Lr .card-title {
  color: #92b5d5;
}
.cid-rKhH8QY1Lr .card .card-img span {
  color: #92b5d5;
  font-size: 60px;
  background: linear-gradient(45deg, #92b5d5, #92b5d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rKhH8QY1Lr .mbr-section-subtitle,
  .cid-rKhH8QY1Lr .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rKhH8QY1Lr .card .card-img span {
    background: none;
  }
}
.cid-rKhHcdIS5H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ec6963;
}
.cid-rKhHcdIS5H .row-element,
.cid-rKhHcdIS5H .image-element {
  padding: 0;
}
.cid-rKhHcdIS5H .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhHcdIS5H .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHcdIS5H .text-content {
  padding: 3rem;
}
.cid-rKhHcdIS5H .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-rKhHcdIS5H .text-content {
    padding: 2rem 1rem;
  }
  .cid-rKhHcdIS5H .mbr-title,
  .cid-rKhHcdIS5H .mbr-text,
  .cid-rKhHcdIS5H .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rKhHcSSfun {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKhHcSSfun .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rKhHcSSfun .row-element,
.cid-rKhHcSSfun .image-element {
  padding: 0;
}
.cid-rKhHcSSfun .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhHcSSfun .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHcSSfun .text-content {
  padding: 3rem;
}
.cid-rKhHcSSfun .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rKhHcSSfun .text-content {
    padding: 2rem 1rem;
  }
  .cid-rKhHcSSfun .mbr-title,
  .cid-rKhHcSSfun .underline,
  .cid-rKhHcSSfun .mbr-text,
  .cid-rKhHcSSfun .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rKhHffQ9mo {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKhHffQ9mo .row-element,
.cid-rKhHffQ9mo .image-element {
  padding: 0;
}
.cid-rKhHffQ9mo .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhHffQ9mo .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHffQ9mo .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rKhHffQ9mo .text-content {
    padding: 2rem 1rem;
  }
  .cid-rKhHffQ9mo .mbr-title,
  .cid-rKhHffQ9mo .mbr-text,
  .cid-rKhHffQ9mo .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rKhHffQ9mo .mbr-text,
.cid-rKhHffQ9mo .mbr-section-btn {
  color: #767676;
}
.cid-rKhHffQ9mo .mbr-title {
  color: #e96188;
}
.cid-rKhHgqE0bt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fac769;
}
.cid-rKhHgqE0bt .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rKhHgqE0bt .row-element,
.cid-rKhHgqE0bt .image-element {
  padding: 0;
}
.cid-rKhHgqE0bt .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhHgqE0bt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHgqE0bt .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-rKhHgqE0bt .text-content {
    padding: 2rem 1rem;
  }
  .cid-rKhHgqE0bt .mbr-title,
  .cid-rKhHgqE0bt .underline,
  .cid-rKhHgqE0bt .mbr-text,
  .cid-rKhHgqE0bt .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rKhHh7USFS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #365c9a;
}
.cid-rKhHh7USFS .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rKhHh7USFS .row-element,
.cid-rKhHh7USFS .image-element {
  padding: 0;
}
.cid-rKhHh7USFS .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhHh7USFS .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHh7USFS .text-content {
  padding: 3rem;
}
.cid-rKhHh7USFS .mbr-figure {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-rKhHh7USFS .text-content {
    padding: 2rem 1rem;
  }
  .cid-rKhHh7USFS .mbr-title,
  .cid-rKhHh7USFS .mbr-text,
  .cid-rKhHh7USFS .mbr-section-btn,
  .cid-rKhHh7USFS .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-rKhHi1iI9J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKhHi1iI9J .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-rKhHi1iI9J .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rKhHi1iI9J .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHi1iI9J .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-rKhHi1iI9J .card-overlay {
  display: none;
  background: #fac769;
}
@media (min-width: 768px) {
  .cid-rKhHi1iI9J .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHi1iI9J .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHi1iI9J .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHi1iI9J .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHi1iI9J .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHi1iI9J .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHi1iI9J .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHi1iI9J .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHi1iI9J .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rKhHi1iI9J .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rKhHi1iI9J .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rKhHi1iI9J .card-title,
  .cid-rKhHi1iI9J .underline,
  .cid-rKhHi1iI9J .mbr-text,
  .cid-rKhHi1iI9J .mbr-section-btn,
  .cid-rKhHi1iI9J .mbr-section-subtitle,
  .cid-rKhHi1iI9J .mbr-section-title {
    text-align: center !important;
  }
  .cid-rKhHi1iI9J .wrapper {
    background-color: #fac769;
  }
}
.cid-rKhHi1iI9J .mbr-section-title {
  text-align: left;
}
.cid-rKhHj5s3NA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKhHj5s3NA .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-rKhHj5s3NA .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rKhHj5s3NA .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rKhHj5s3NA .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-rKhHj5s3NA .card-overlay {
  display: none;
  background: #92b5d5;
}
@media (min-width: 768px) {
  .cid-rKhHj5s3NA .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHj5s3NA .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHj5s3NA .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHj5s3NA .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rKhHj5s3NA .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHj5s3NA .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHj5s3NA .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHj5s3NA .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rKhHj5s3NA .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rKhHj5s3NA .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rKhHj5s3NA .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rKhHj5s3NA .card-title,
  .cid-rKhHj5s3NA .underline,
  .cid-rKhHj5s3NA .mbr-text,
  .cid-rKhHj5s3NA .mbr-section-btn,
  .cid-rKhHj5s3NA .mbr-section-subtitle,
  .cid-rKhHj5s3NA .mbr-section-title {
    text-align: center !important;
  }
  .cid-rKhHj5s3NA .wrapper {
    background-color: #92b5d5;
  }
}
.cid-rKhHj5s3NA .mbr-section-title {
  text-align: left;
}
.cid-rKhHjYcyfQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHjYcyfQ .mbr-text {
  color: #767676;
}
.cid-rKhHjYcyfQ .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHjYcyfQ .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhHjYcyfQ .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rKhHjYcyfQ .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rKhHjYcyfQ .card-text {
  margin-top: 2rem;
}
.cid-rKhHjYcyfQ .card-box {
  margin-bottom: 1rem;
}
.cid-rKhHjYcyfQ .num {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rKhHjYcyfQ .num,
  .cid-rKhHjYcyfQ .card-title,
  .cid-rKhHjYcyfQ .mbr-text,
  .cid-rKhHjYcyfQ .mbr-title,
  .cid-rKhHjYcyfQ .mbr-section-subtitle,
  .cid-rKhHjYcyfQ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rKhHjYcyfQ .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rKhHkTagSb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background10.jpg");
}
.cid-rKhHkTagSb .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rKhHkTagSb .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhHkTagSb .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rKhHkTagSb .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rKhHkTagSb .card-text {
  margin-top: 2rem;
}
.cid-rKhHkTagSb .card-box {
  margin-bottom: 1rem;
}
.cid-rKhHkTagSb .num {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rKhHkTagSb .num,
  .cid-rKhHkTagSb .card-title,
  .cid-rKhHkTagSb .mbr-text,
  .cid-rKhHkTagSb .mbr-title,
  .cid-rKhHkTagSb .mbr-section-subtitle,
  .cid-rKhHkTagSb .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rKhHkTagSb .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rKhHlMwmUv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHlMwmUv .mbr-text {
  color: #767676;
}
.cid-rKhHlMwmUv .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHlMwmUv .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhHlMwmUv .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rKhHlMwmUv .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rKhHlMwmUv .card-text {
  padding-top: 2rem;
}
.cid-rKhHlMwmUv .card-box {
  padding-bottom: 1rem;
}
.cid-rKhHlMwmUv .num {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rKhHlMwmUv .num,
  .cid-rKhHlMwmUv .card-title,
  .cid-rKhHlMwmUv .mbr-text,
  .cid-rKhHlMwmUv .mbr-title,
  .cid-rKhHlMwmUv .mbr-section-subtitle,
  .cid-rKhHlMwmUv .mbr-section-btn,
  .cid-rKhHlMwmUv .mbr-section-title {
    text-align: center !important;
  }
  .cid-rKhHlMwmUv .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rKhHmFgVXk {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKhHmFgVXk .mbr-text {
  color: #767676;
}
.cid-rKhHmFgVXk .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHmFgVXk .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhHmFgVXk .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rKhHmFgVXk .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rKhHmFgVXk .card-text {
  padding-top: 2rem;
}
.cid-rKhHmFgVXk .card-box {
  padding-bottom: 1rem;
}
.cid-rKhHmFgVXk .num {
  color: #fac769;
}
@media (max-width: 767px) {
  .cid-rKhHmFgVXk .num,
  .cid-rKhHmFgVXk .card-title,
  .cid-rKhHmFgVXk .mbr-text,
  .cid-rKhHmFgVXk .mbr-title,
  .cid-rKhHmFgVXk .mbr-section-subtitle,
  .cid-rKhHmFgVXk .mbr-section-btn,
  .cid-rKhHmFgVXk .mbr-section-title {
    text-align: center !important;
  }
  .cid-rKhHmFgVXk .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rKhHmFgVXk .mbr-section-title {
  text-align: center;
}
.cid-rKhHnxY6zB {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../commerce/images/background5.jpg");
}
.cid-rKhHnxY6zB .card-wrapper {
  z-index: 3;
}
.cid-rKhHnxY6zB .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rKhHnxY6zB:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rKhHnxY6zB .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rKhHnxY6zB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rKhHnxY6zB .text-block {
  text-align: right !important;
}
.cid-rKhHoMBPcq {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../commerce/images/background4.jpg");
}
.cid-rKhHoMBPcq .card-wrapper {
  z-index: 3;
}
.cid-rKhHoMBPcq .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rKhHoMBPcq:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rKhHoMBPcq .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rKhHoMBPcq .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rKhHoMBPcq .text-block {
  text-align: left !important;
}
.cid-rKhHqePN5X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHqePN5X .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHqRSSsl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/02.jpg");
}
.cid-rKhHrNP2dG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHsz1gp1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHt8jyJK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHt8jyJK .mbr-text {
  color: #232323;
}
.cid-rKhHt8jyJK .mbr-subtitle {
  color: #767676;
}
.cid-rKhHuZ6lJg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHuZ6lJg .mbr-text {
  color: #232323;
}
.cid-rKhHuZ6lJg .mbr-subtitle {
  color: #767676;
}
.cid-rKhHw3LEhW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHw3LEhW .counter-container {
  color: #767676;
}
.cid-rKhHw3LEhW .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-rKhHw3LEhW .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-rKhHw3LEhW .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
}
.cid-rKhHw3LEhW .counter-container ol li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #66458e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-rKhHwPHQpw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHwPHQpw .counter-container {
  color: #767676;
}
.cid-rKhHwPHQpw .counter-container ul {
  margin-bottom: 0;
}
.cid-rKhHwPHQpw .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rKhHwPHQpw .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #66458e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-rKhHyX0i9n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHyX0i9n blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-rKhHyX0i9n .mbr-text,
.cid-rKhHyX0i9n .blockquote-quote {
  color: #879a9f;
}
.cid-rKhHyX0i9n footer {
  font-style: normal;
}
.cid-rKhHzRPJ0Y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKhHzRPJ0Y .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rKhHzRPJ0Y .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rKhHAFB2Iv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKhHAFB2Iv .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rKhHAFB2Iv .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rKhHBCEGO4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKhHBCEGO4 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rKhHBCEGO4 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rKhHBCEGO4 .mbr-text {
  color: #767676;
}
.cid-rKhHF06Dbn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKhHF06Dbn .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rKhHF06Dbn .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rKhHF06Dbn .mbr-text {
  color: #767676;
}
.cid-rKhHFULw7B {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhHHcKv13 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHHcKv13 .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rKhHHcKv13 .mbr-media {
  display: inline-block;
  width: 100%;
}
.cid-rKhHHcKv13 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rKhHHcKv13 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rKhHHcKv13 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rKhHHcKv13 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rKhHHcKv13 a.close:hover {
  color: #ffffff;
}
.cid-rKhHHcKv13 .btn-play {
  position: relative;
  background: #ec6963;
  width: 60px;
  height: 60px;
  border: 1px solid #ec6963;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rKhHHcKv13 .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s play-video linear infinite;
  animation: 1s play-video linear infinite;
}
@keyframes play-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes play-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-rKhHIf6Keo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background1.jpg");
}
.cid-rKhHIf6Keo .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rKhHIf6Keo .mbr-media {
  display: inline-block;
  width: 100%;
}
.cid-rKhHIf6Keo .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rKhHIf6Keo .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rKhHIf6Keo .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rKhHIf6Keo a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rKhHIf6Keo a.close:hover {
  color: #ffffff;
}
.cid-rKhHIf6Keo .btn-play {
  position: relative;
  background: #66458e;
  width: 60px;
  height: 60px;
  border: 1px solid #66458e;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rKhHIf6Keo .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s play-video linear infinite;
  animation: 1s play-video linear infinite;
}
@keyframes play-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes play-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-rKhHJEnmXY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background15.jpg");
}
.cid-rKhHJEnmXY .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rKhHJEnmXY .mbr-media {
  display: inline-block;
  width: 100%;
}
.cid-rKhHJEnmXY .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rKhHJEnmXY .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rKhHJEnmXY .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rKhHJEnmXY a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rKhHJEnmXY a.close:hover {
  color: #ffffff;
}
.cid-rKhHJEnmXY .btn-play {
  position: relative;
  background: #365c9a;
  width: 60px;
  height: 60px;
  border: 1px solid #365c9a;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rKhHJEnmXY .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s play-video linear infinite;
  animation: 1s play-video linear infinite;
}
@keyframes play-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes play-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-rKhHJEnmXY .icon-description {
  color: #365c9a;
}
.cid-rKhHMW1mZr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background13.jpg");
}
.cid-rKhHMW1mZr .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHMW1mZr ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKhHMW1mZr ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rKhHMW1mZr ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rKhHMW1mZr ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rKhHMW1mZr .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rKhHNYGZPh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #66458e;
}
.cid-rKhHNYGZPh .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rKhHNYGZPh .mbr-section-btn,
  .cid-rKhHNYGZPh .mbr-section-subtitle,
  .cid-rKhHNYGZPh .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rKhHP3muka {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fac769;
}
.cid-rKhHP3muka .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHP3muka .mbr-section-title {
  color: #ffffff;
}
.cid-rKhHQ1QIDT {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../commerce/images/background16.jpg");
}
.cid-rKhHQ1QIDT .mbr-section-title {
  text-align: center;
}
.cid-rKhHQ1QIDT .mbr-section-subtitle {
  text-align: center;
}
.cid-rKhHToSRlw {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-rKhHToSRlw .mbr-section-title {
  margin-bottom: 0;
}
.cid-rKhHToSRlw .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-rKhHToSRlw .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhHToSRlw .mbr-iconfont:hover {
  color: #e96188;
}
.cid-rKhHToSRlw .image-wrap {
  position: relative;
}
.cid-rKhHToSRlw .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-rKhHToSRlw .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-rKhHToSRlw .card-wrap {
  margin-bottom: 3rem;
}
.cid-rKhHToSRlw .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-rKhHToSRlw .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-rKhHToSRlw .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-rKhHToSRlw .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-rKhHToSRlw .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-rKhHToSRlw .img-overlay {
  background: linear-gradient(transparent, #232323);
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-rKhHToSRlw .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-rKhHToSRlw .mbr-role {
  color: #e96188;
}
.cid-rKhHToSRlw .mbr-text {
  color: #767676;
}
.cid-rKhHUjDKmA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../commerce/images/background12.jpg");
}
.cid-rKhHUjDKmA .mbr-section-title {
  margin-bottom: 0;
}
.cid-rKhHUjDKmA .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-rKhHUjDKmA .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhHUjDKmA .mbr-iconfont:hover {
  color: #66458e;
}
.cid-rKhHUjDKmA .image-wrap {
  position: relative;
}
.cid-rKhHUjDKmA .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-rKhHUjDKmA .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-rKhHUjDKmA .card-wrap {
  margin-bottom: 3rem;
}
.cid-rKhHUjDKmA .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-rKhHUjDKmA .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-rKhHUjDKmA .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-rKhHUjDKmA .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-rKhHUjDKmA .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-rKhHUjDKmA .img-overlay {
  background: linear-gradient(transparent, #bcc2d8);
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-rKhHUjDKmA .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-rKhHUjDKmA .mbr-text {
  color: #767676;
}
.cid-rKhHVSl5Uv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHVSl5Uv .form-control {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-rKhHVSl5Uv .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rKhHVSl5Uv input::-webkit-input-placeholder {
  color: #000000;
}
.cid-rKhHVSl5Uv input::-moz-placeholder {
  color: #000000;
}
.cid-rKhHVSl5Uv textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-rKhHVSl5Uv textarea::-moz-placeholder {
  color: #000000;
}
.cid-rKhHVSl5Uv textarea.form-control {
  min-height: 83px;
}
.cid-rKhHVSl5Uv .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhHWVqwWF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhHWVqwWF .form-control,
.cid-rKhHWVqwWF .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-rKhHWVqwWF .form-control:focus,
.cid-rKhHWVqwWF .form-control:focus:focus {
  outline: none;
}
.cid-rKhHWVqwWF input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rKhHWVqwWF input::-moz-placeholder {
  color: #5b686b;
}
.cid-rKhHWVqwWF textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rKhHWVqwWF textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-rKhHWVqwWF .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rKhHWVqwWF .form-control {
  margin-bottom: 15px;
}
.cid-rKhHWVqwWF .map {
  width: 100%;
  height: 30rem;
}
.cid-rKhHWVqwWF .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rKhHWVqwWF .mbr-text {
  color: #767676;
}
.cid-rKhHWVqwWF .input-group-btn {
  display: block;
}
.cid-rKhHWVqwWF .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(1);
}
.cid-rKhHWVqwWF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rKhHWVqwWF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rKhHWVqwWF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rKhHWVqwWF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-rKhHWVqwWF .mbr-section-subtitle,
  .cid-rKhHWVqwWF .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rKhHWVqwWF .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-rKhHYXD44o {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rKhHYXD44o .google-map {
  height: 25rem;
  position: relative;
}
.cid-rKhHYXD44o .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rKhHYXD44o .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rKhHYXD44o .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rKhHYXD44o .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rKhI0CTk1R {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhI0CTk1R .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKhI0CTk1R .carousel-item.active,
.cid-rKhI0CTk1R .carousel-item-next,
.cid-rKhI0CTk1R .carousel-item-prev {
  display: flex;
}
.cid-rKhI0CTk1R .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-rKhI0CTk1R .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #bcc2d8;
  opacity: .9;
}
.cid-rKhI0CTk1R .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rKhI0CTk1R .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #bcc2d8;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-rKhI0CTk1R .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-rKhI0CTk1R .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rKhI0CTk1R .user_text {
  color: #767676;
}
.cid-rKhI0CTk1R .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-rKhI0CTk1R .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-rKhI0CTk1R .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rKhI9omhFj {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rKhI9omhFj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 3rem;
}
.cid-rKhI9omhFj .carousel-item > div {
  width: 100%;
}
.cid-rKhI9omhFj .carousel-item.active,
.cid-rKhI9omhFj .carousel-item-next,
.cid-rKhI9omhFj .carousel-item-prev {
  display: flex;
}
.cid-rKhI9omhFj .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-rKhI9omhFj .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-rKhI9omhFj .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rKhI9omhFj .signature,
.cid-rKhI9omhFj .desk {
  margin: 0;
}
.cid-rKhI9omhFj .mbr-text,
.cid-rKhI9omhFj .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rKhI9omhFj .signature,
.cid-rKhI9omhFj .desk {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKhI9omhFj .carousel-item {
    padding: 0 5rem;
  }
}
@media (min-width: 768px) {
  .cid-rKhI9omhFj .carousel-controls a {
    width: 5%;
  }
}
.cid-rKhIbvnkMa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background11.jpg");
}
.cid-rKhIbvnkMa .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rKhIbvnkMa .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rKhIbvnkMa .list-group-item {
  padding: .75rem 0rem;
}
.cid-rKhIbvnkMa .plan-subtitle {
  color: #cccccc;
}
.cid-rKhIbvnkMa .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-rKhIbvnkMa .price-term .term {
  display: inline-block;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rKhIbvnkMa .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rKhIbvnkMa .plan .mbr-overlay {
  background: #66458e;
  opacity: 0.9;
}
.cid-rKhIbvnkMa .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rKhIbvnkMa .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rKhIbvnkMa .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rKhIbvnkMa .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rKhIbvnkMa .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rKhIbvnkMa .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rKhIbvnkMa .plan {
    margin-bottom: 30px;
  }
}
.cid-rKhIbvnkMa .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rKhIbvnkMa .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rKhIehQ1DI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background11.jpg");
}
.cid-rKhIehQ1DI .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rKhIehQ1DI .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rKhIehQ1DI .list-group-item {
  padding: .75rem 0rem;
}
.cid-rKhIehQ1DI .plan-subtitle {
  color: #cccccc;
}
.cid-rKhIehQ1DI .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-rKhIehQ1DI .nav-tabs {
  border: none !important;
}
.cid-rKhIehQ1DI .nav-tabs .btn {
  background: transparent !important;
  position: relative;
}
.cid-rKhIehQ1DI .nav-tabs .btn:not(:focus):not(:hover):not(.active) {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.cid-rKhIehQ1DI .nav-tabs .btn.active,
.cid-rKhIehQ1DI .nav-tabs .btn:hover {
  background: #66458e !important;
  color: #ffffff !important;
  border-color: #66458e !important;
}
.cid-rKhIehQ1DI .nav-tabs .btn.active:after {
  animation: none;
}
.cid-rKhIehQ1DI .nav-tabs .btn:after {
  content: '';
  border: 0px solid;
  border-color: inherit;
  border-radius: inherit;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.cid-rKhIehQ1DI .nav-tabs .btn:hover:after {
  border-width: 1px;
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-rKhIehQ1DI .price-term .term {
  display: inline-block;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rKhIehQ1DI .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rKhIehQ1DI .plan .mbr-overlay {
  background: #66458e;
  opacity: 0.9;
}
.cid-rKhIehQ1DI .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rKhIehQ1DI .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rKhIehQ1DI .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rKhIehQ1DI .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rKhIehQ1DI .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rKhIehQ1DI .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rKhIehQ1DI .plan {
    margin-bottom: 30px;
  }
}
.cid-rKhIehQ1DI .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rKhIehQ1DI .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rKhIfG05U9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-rKhIfG05U9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rKhIfG05U9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rKhIfG05U9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rKhIfG05U9 .plan-subtitle {
  color: #66458e;
}
.cid-rKhIfG05U9 .mbr-text {
  margin: 15px 0 0 0;
  color: #767676;
}
.cid-rKhIfG05U9 .price-term .term {
  display: inline-block;
  background: #ebebeb;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rKhIfG05U9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rKhIfG05U9 .plan .mbr-overlay {
  background: #f9f9f9;
  opacity: 1;
}
.cid-rKhIfG05U9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rKhIfG05U9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rKhIfG05U9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rKhIfG05U9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rKhIfG05U9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rKhIfG05U9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rKhIfG05U9 .plan {
    margin-bottom: 30px;
  }
}
.cid-rKhIfG05U9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rKhIfG05U9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rKhIfG05U9 .plan-title {
  color: #232323;
}
.cid-rKhIfG05U9 .price-figure {
  color: #232323;
}
.cid-rKhIfG05U9 .price-term {
  color: #767676;
  text-align: center;
}
.cid-rKhIfG05U9 LI {
  color: #767676;
}
.cid-rKhIhugeSJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../commerce/images/background3.jpg");
}
.cid-rKhIhugeSJ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rKhIhugeSJ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rKhIhugeSJ .list-group-item {
  padding: .75rem 0rem;
}
.cid-rKhIhugeSJ .plan-subtitle {
  color: #66458e;
}
.cid-rKhIhugeSJ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rKhIhugeSJ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rKhIhugeSJ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rKhIhugeSJ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rKhIhugeSJ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rKhIhugeSJ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rKhIhugeSJ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rKhIhugeSJ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rKhIhugeSJ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rKhIhugeSJ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rKhIhugeSJ .plan {
    margin-bottom: 30px;
  }
}
.cid-rKhIhugeSJ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rKhIhugeSJ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rKhIhugeSJ .plan-title {
  color: #ffffff;
}
.cid-rKhIhugeSJ .price-figure {
  color: #ffffff;
}
.cid-rKhIhugeSJ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rKhIhugeSJ LI {
  color: #ffffff;
}
.cid-rKhIj3RcT4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhIj3RcT4 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rKhIj3RcT4 .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #232323;
  font-size: 3rem;
}
.cid-rKhIj3RcT4 .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #232323;
}
.cid-rKhIj3RcT4 .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #232323;
  font-size: 3rem;
}
.cid-rKhIj3RcT4 .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKhIj3RcT4 .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-rKhIj3RcT4 .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-rKhIj3RcT4 .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-rKhIj3RcT4 .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-rKhIj3RcT4 .number {
    font-size: 25px;
  }
  .cid-rKhIj3RcT4 .period {
    font-size: 0.7rem;
  }
}
.cid-rKhIkEuAWF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #4e84c2;
}
.cid-rKhIkEuAWF .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-rKhIkEuAWF .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  font-size: 3rem;
}
.cid-rKhIkEuAWF .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.cid-rKhIkEuAWF .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
  font-size: 3rem;
}
.cid-rKhIkEuAWF .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKhIkEuAWF .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-rKhIkEuAWF .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-rKhIkEuAWF .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-rKhIkEuAWF .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-rKhIkEuAWF .number {
    font-size: 25px;
  }
  .cid-rKhIkEuAWF .period {
    font-size: 0.7rem;
  }
}
.cid-rKhIkEuAWF H2 {
  color: #ffffff;
}
.cid-rKhInTbJ2P {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../commerce/images/background9.jpg");
}
.cid-rKhInTbJ2P .container-fluid {
  padding: 0 3rem;
}
.cid-rKhInTbJ2P .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhInTbJ2P .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKhInTbJ2P .table-wrapper {
  margin: 0 auto;
}
.cid-rKhInTbJ2P table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKhInTbJ2P table thead tr {
  border: none !important;
}
.cid-rKhInTbJ2P table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-rKhInTbJ2P table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rKhInTbJ2P table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKhInTbJ2P tr:hover {
  background-color: #fac769 !important;
}
.cid-rKhInTbJ2P .head-item:after,
.cid-rKhInTbJ2P .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKhInTbJ2P table th,
  .cid-rKhInTbJ2P table td {
    padding: .75rem;
  }
}
.cid-rKhInTbJ2P .body-item {
  text-align: center;
}
.cid-rKhInTbJ2P .head-item {
  color: #000000;
}
.cid-rKhInTbJ2P .mbr-text {
  color: #767676;
}
.cid-rKhIoQ1e80 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhIoQ1e80 .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIoQ1e80 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKhIoQ1e80 .table-wrapper {
  margin: 0 auto;
}
.cid-rKhIoQ1e80 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKhIoQ1e80 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-rKhIoQ1e80 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-rKhIoQ1e80 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rKhIoQ1e80 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rKhIoQ1e80 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rKhIoQ1e80 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-rKhIoQ1e80 .dataTables_wrapper {
  display: block;
}
.cid-rKhIoQ1e80 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rKhIoQ1e80 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rKhIoQ1e80 .head-item:after,
.cid-rKhIoQ1e80 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-rKhIoQ1e80 .dataTables_filter {
    text-align: center;
  }
  .cid-rKhIoQ1e80 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-rKhIoQ1e80 .dataTables_filter {
    text-align: center;
  }
  .cid-rKhIoQ1e80 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-rKhIoQ1e80 table th,
  .cid-rKhIoQ1e80 table td {
    padding: .75rem;
  }
}
.cid-rKhIq0XDkl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../commerce/images/background9.jpg");
}
.cid-rKhIq0XDkl .container-fluid {
  padding: 0 3rem;
}
.cid-rKhIq0XDkl .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIq0XDkl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKhIq0XDkl .table-wrapper {
  margin: 0 auto;
}
.cid-rKhIq0XDkl table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKhIq0XDkl table thead tr {
  border: none !important;
}
.cid-rKhIq0XDkl table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-rKhIq0XDkl table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rKhIq0XDkl table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKhIq0XDkl table.table {
  background: #ffffff;
}
.cid-rKhIq0XDkl tr:hover {
  background-color: #92b5d5 !important;
}
.cid-rKhIq0XDkl .head-item:after,
.cid-rKhIq0XDkl .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKhIq0XDkl table th,
  .cid-rKhIq0XDkl table td {
    padding: .75rem;
  }
}
.cid-rKhIq0XDkl .body-item {
  text-align: center;
}
.cid-rKhIq0XDkl .head-item {
  color: #000000;
}
.cid-rKhIseXdeW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../commerce/images/10.jpg");
}
.cid-rKhIseXdeW .container-fluid {
  padding: 0 3rem;
}
.cid-rKhIseXdeW .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIseXdeW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rKhIseXdeW .table-wrapper {
  margin: 0 auto;
}
.cid-rKhIseXdeW table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rKhIseXdeW table thead tr {
  border: none !important;
}
.cid-rKhIseXdeW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-rKhIseXdeW table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-rKhIseXdeW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rKhIseXdeW tr:hover {
  background-color: #92b5d5 !important;
}
.cid-rKhIseXdeW .head-item:after,
.cid-rKhIseXdeW .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rKhIseXdeW table th,
  .cid-rKhIseXdeW table td {
    padding: .75rem;
  }
}
.cid-rKhIseXdeW .body-item {
  text-align: center;
}
.cid-rKhIseXdeW .head-item {
  color: #000000;
}
.cid-rKhIseXdeW .mbr-text {
  color: #767676;
}
.cid-rKhIseXdeW .mbr-section-title,
.cid-rKhIseXdeW .underline {
  text-align: left;
}
.cid-rKhIwyKPja {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhIwyKPja .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-rKhIwyKPja .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rKhIwyKPja .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIwyKPja .panel-group {
  width: 100%;
}
.cid-rKhIwyKPja .panel-text {
  color: #767676;
}
.cid-rKhIwyKPja .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rKhIwyKPja .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rKhIwyKPja .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f6f6f6;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rKhIwyKPja .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rKhIwyKPja .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rKhIwyKPja .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rKhIwyKPja .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rKhIwyKPja .card .panel-body {
  background: #ffffff;
}
.cid-rKhIwyKPja .sign {
  color: #232323;
}
.cid-rKhIxYztAm {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rKhIxYztAm .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rKhIxYztAm .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rKhIxYztAm .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIxYztAm .panel-group {
  width: 100%;
}
.cid-rKhIxYztAm .panel-text {
  color: #767676;
}
.cid-rKhIxYztAm .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rKhIxYztAm .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rKhIxYztAm .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #66458e;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rKhIxYztAm .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rKhIxYztAm .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rKhIxYztAm .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rKhIxYztAm .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rKhIxYztAm .card .panel-body {
  background: #efefef;
}
.cid-rKhIz8lYrZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKhIz8lYrZ .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIz8lYrZ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-rKhIz8lYrZ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-rKhIz8lYrZ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-rKhIz8lYrZ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-rKhIz8lYrZ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-rKhIz8lYrZ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-rKhIz8lYrZ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rKhIz8lYrZ .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-rKhIz8lYrZ .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  border: none !important;
}
.cid-rKhIz8lYrZ .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rKhIz8lYrZ .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-rKhIz8lYrZ [class^="socicon-"]:before,
.cid-rKhIz8lYrZ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rKhIz8lYrZ .btn {
    font-size: 20px !important;
  }
}
.cid-rKhIEAVBzU {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-rKhIEAVBzU .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIEAVBzU .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #66458e;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-rKhIEAVBzU .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-rKhIEAVBzU .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-rKhIEAVBzU .mbr-iconfont-social:hover:before {
  background: #66458e;
  transition: all .3s;
  border-color: transparent;
}
.cid-rKhIEAVBzU .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-rKhIEAVBzU .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-rKhIDgu6xb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-rKhIDgu6xb .mbr-section-subtitle {
  color: #767676;
}
.cid-rKhIDgu6xb .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #66458e;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.cid-rKhIDgu6xb .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rKhIDgu6xb .btn-social:hover {
  color: #fff;
  background: #66458e;
}
.cid-rKhIDgu6xb .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-rKhIDgu6xb .btn-social {
  border: none !important;
  background: #e96188;
  color: #ffffff;
}
.cid-rKhIDgu6xb .btn-social:after {
  border-color: #e96188;
}
.cid-rKhIDgu6xb [class^="socicon-"]:before,
.cid-rKhIDgu6xb [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rKhIDgu6xb .btn {
    font-size: 20px !important;
  }
}
.cid-rKhIMBSw5y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKhIMBSw5y .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rKhIMBSw5y .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rKhIMBSw5y .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rKhIMBSw5y .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rKhIMBSw5y .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rKhIMBSw5y .icon-transition span:hover {
  background-color: #e96188;
}
.cid-rKhIMBSw5y .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-rKhIMBSw5y .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rKhIMBSw5y .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rKhIMBSw5y .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rKhIPupVTU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-rKhIPupVTU .content {
    text-align: center;
  }
  .cid-rKhIPupVTU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rKhIPupVTU .img-logo img {
  height: 6rem;
}
.cid-rKhIPupVTU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rKhIPupVTU .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rKhIPupVTU .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhIPupVTU .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rKhIPupVTU .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rKhIPupVTU .social-list a:hover {
  opacity: 1;
}
.cid-rKhIPupVTU .form-control {
  min-height: auto;
  color: #ffffff !important;
  border: none;
  width: 100%;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rKhIPupVTU .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rKhIPupVTU input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rKhIPupVTU input::-moz-placeholder {
  color: #ffffff;
}
.cid-rKhIPupVTU textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rKhIPupVTU textarea::-moz-placeholder {
  color: #ffffff;
}
.cid-rKhIPupVTU .list {
  list-style-type: none;
  padding: 0;
}
.cid-rKhIPupVTU .list li {
  padding-bottom: .5rem;
}
.cid-rKhIPupVTU .list li:last-child {
  padding-bottom: 0;
}
.cid-rKhIPupVTU .mbr-footer-list,
.cid-rKhIPupVTU .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rKhIPupVTU .mbr-footer-list,
  .cid-rKhIPupVTU .form-text,
  .cid-rKhIPupVTU .footer-title,
  .cid-rKhIPupVTU .footer-main-title,
  .cid-rKhIPupVTU .form-text,
  .cid-rKhIPupVTU .list {
    text-align: center !important;
  }
  .cid-rKhIPupVTU .mbr-form,
  .cid-rKhIPupVTU .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rKhIRnEYjz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../commerce/images/background2.jpg");
}
@media (max-width: 767px) {
  .cid-rKhIRnEYjz .content {
    text-align: center;
  }
  .cid-rKhIRnEYjz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rKhIRnEYjz .img-logo img {
  height: 6rem;
}
.cid-rKhIRnEYjz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rKhIRnEYjz .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-rKhIRnEYjz .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rKhIRnEYjz .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rKhIRnEYjz .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rKhIRnEYjz .social-list a:hover {
  opacity: 1;
}
.cid-rKhIRnEYjz .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rKhIRnEYjz .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rKhIRnEYjz input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rKhIRnEYjz input::-moz-placeholder {
  color: #232323;
}
.cid-rKhIRnEYjz textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rKhIRnEYjz textarea::-moz-placeholder {
  color: #232323;
}
.cid-rKhIRnEYjz .list {
  list-style-type: none;
  padding: 0;
}
.cid-rKhIRnEYjz .list li {
  padding-bottom: .5rem;
}
.cid-rKhIRnEYjz .list li:last-child {
  padding-bottom: 0;
}
.cid-rKhIRnEYjz .mbr-footer-list,
.cid-rKhIRnEYjz .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rKhIRnEYjz .mbr-footer-list,
  .cid-rKhIRnEYjz .form-text,
  .cid-rKhIRnEYjz .footer-title,
  .cid-rKhIRnEYjz .footer-main-title,
  .cid-rKhIRnEYjz .form-text,
  .cid-rKhIRnEYjz .list {
    text-align: center !important;
  }
  .cid-rKhIRnEYjz .mbr-form,
  .cid-rKhIRnEYjz .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rKhIRnEYjz .footer-title {
  text-align: right;
  color: #232323;
}
.cid-rKhIRnEYjz .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-rKhIRnEYjz .footer-main-title {
  color: #232323;
}
.cid-rKhITzQ8ph {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKhITzQ8ph *:focus {
  outline: none;
}
.cid-rKhITzQ8ph .form-control {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rKhITzQ8ph .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rKhITzQ8ph input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rKhITzQ8ph input::-moz-placeholder {
  color: #232323;
}
.cid-rKhITzQ8ph textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rKhITzQ8ph textarea::-moz-placeholder {
  color: #232323;
}
.cid-rKhITzQ8ph .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-rKhITzQ8ph .soc-item:hover {
  opacity: .5;
}
.cid-rKhITzQ8ph .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-rKhITzQ8ph .days-column,
.cid-rKhITzQ8ph .hours-column {
  display: inline-block;
}
.cid-rKhITzQ8ph .days-column span,
.cid-rKhITzQ8ph .hours-column span {
  display: block;
}
.cid-rKhITzQ8ph .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-rKhITzQ8ph .days-column {
    padding-right: 0 !important;
  }
  .cid-rKhITzQ8ph .hours-column {
    max-width: 50% !important;
  }
  .cid-rKhITzQ8ph .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-rKhITzQ8ph .follow-title,
.cid-rKhITzQ8ph .social-list {
  text-align: center;
}
.cid-rKhIW4zFoW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKhIW4zFoW .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
