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





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Handlee', handwriting;
  font-size: 3.8rem;
}
.display-2 {
  font-family: 'Handlee', handwriting;
  font-size: 2.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: -webkit-inline-flex;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #28d4e2 !important;
}
.bg-info {
  background-color: #84cc13 !important;
}
.bg-warning {
  background-color: #986ee7 !important;
}
.bg-danger {
  background-color: #fff88d !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ff12b2;
  border-color: #ff12b2;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff5ecb !important;
  border-color: #ff5ecb !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #ff12b2 !important;
  border-color: #ff12b2 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff12b2 !important;
  border-color: #ff12b2 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #57860c;
  border-color: #57860c;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #84cc13 !important;
  border-color: #84cc13 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #57860c !important;
  border-color: #57860c !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #57860c !important;
  border-color: #57860c !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #179ca7;
  border-color: #179ca7;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #28d4e2 !important;
  border-color: #28d4e2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #179ca7 !important;
  border-color: #179ca7 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #179ca7 !important;
  border-color: #179ca7 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #692cdc;
  border-color: #692cdc;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #986ee7 !important;
  border-color: #986ee7 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #692cdc !important;
  border-color: #692cdc !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #692cdc !important;
  border-color: #692cdc !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fff341;
  border-color: #fff341;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #fff88d !important;
  border-color: #fff88d !important;
  color: #8d8400 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #8d8400 !important;
  background-color: #fff341 !important;
  border-color: #fff341 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #8d8400 !important;
  background-color: #fff341 !important;
  border-color: #fff341 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ff5ecb;
  border-color: #ff5ecb;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #f700a7;
  color: #f700a7 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ff5ecb;
  border-color: #ff5ecb;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5ecb !important;
  border-color: #ff5ecb !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #84cc13;
  border-color: #84cc13;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #486f0a;
  color: #486f0a !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #84cc13;
  border-color: #84cc13;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #84cc13 !important;
  border-color: #84cc13 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #28d4e2;
  border-color: #28d4e2;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #138791;
  color: #138791 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #28d4e2;
  border-color: #28d4e2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #28d4e2 !important;
  border-color: #28d4e2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #986ee7;
  border-color: #986ee7;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #5d22cd;
  color: #5d22cd !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #986ee7;
  border-color: #986ee7;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #986ee7 !important;
  border-color: #986ee7 !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fff88d;
  border-color: #fff88d;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #fff227;
  color: #fff227 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #8d8400 !important;
  background-color: #fff88d;
  border-color: #fff88d;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #8d8400 !important;
  background-color: #fff88d !important;
  border-color: #fff88d !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  -webkit-transform: scale(0);
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  transform: scale(10);
  -webkit-transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #ff5ecb !important;
}
.text-success {
  color: #28d4e2 !important;
}
.text-info {
  color: #84cc13 !important;
}
.text-warning {
  color: #986ee7 !important;
}
.text-danger {
  color: #fff88d !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #f700a7 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #138791 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #486f0a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5d22cd !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #fff227 !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: #28d4e2;
}
.alert-info {
  background-color: #84cc13;
}
.alert-warning {
  background-color: #986ee7;
}
.alert-danger {
  background-color: #fff88d;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dcf8fa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ddf8b3;
}
.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 a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #a38dfd;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
  -webkit-justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 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;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a38dfd;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #a38dfd;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #a38dfd;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #a38dfd;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qS9xsYxwSf .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;
  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-qS9xsYxwSf .nav-item:focus,
.cid-qS9xsYxwSf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qS9xsYxwSf .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qS9xsYxwSf .nav-item .nav-link {
    position: relative;
  }
  .cid-qS9xsYxwSf .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qS9xsYxwSf .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qS9xsYxwSf .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qS9xsYxwSf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qS9xsYxwSf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qS9xsYxwSf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qS9xsYxwSf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qS9xsYxwSf .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qS9xsYxwSf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qS9xsYxwSf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qS9xsYxwSf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qS9xsYxwSf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qS9xsYxwSf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qS9xsYxwSf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qS9xsYxwSf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qS9xsYxwSf .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-qS9xsYxwSf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qS9xsYxwSf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qS9xsYxwSf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qS9xsYxwSf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qS9xsYxwSf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qS9xsYxwSf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qS9xsYxwSf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qS9xsYxwSf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qS9xsYxwSf .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-qS9xsYxwSf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qS9xsYxwSf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qS9xsYxwSf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qS9xsYxwSf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qS9xsYxwSf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qS9xsYxwSf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qS9xsYxwSf .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qS9xsYxwSf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qS9xsYxwSf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qS9xsYxwSf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qS9xsYxwSf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qS9xsYxwSf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qS9xsYxwSf .dropdown-item.active,
.cid-qS9xsYxwSf .dropdown-item:active {
  background-color: transparent;
}
.cid-qS9xsYxwSf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qS9xsYxwSf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qS9xsYxwSf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qS9xsYxwSf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qS9xsYxwSf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qS9xsYxwSf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qS9xsYxwSf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qS9xsYxwSf .navbar-buttons {
  text-align: center;
}
.cid-qS9xsYxwSf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qS9xsYxwSf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qS9xsYxwSf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qS9xsYxwSf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qS9xsYxwSf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qS9xsYxwSf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qS9xsYxwSf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qS9xsYxwSf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qS9xsYxwSf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qS9xsYxwSf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qS9xsYxwSf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qS9xsYxwSf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qS9xsYxwSf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qS9xsYxwSf .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qS9xsYxwSf .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qS9xsYxwSf .navbar {
    height: 77px;
  }
  .cid-qS9xsYxwSf .navbar.opened {
    height: auto;
  }
  .cid-qS9xsYxwSf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qS9RXhtWxt {
  padding-top: 105px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x209916.jpg");
}
.cid-qS9RXhtWxt .container-fluid {
  padding: 0 3rem;
}
.cid-qS9RXhtWxt .media-container-column {
  padding: 0 2rem;
}
.cid-qS9RXhtWxt .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qS9RXhtWxt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qS9RXhtWxt .mbr-section-subtitle {
  color: #84510e;
}
.cid-qS9RXhtWxt .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qS9RdPXv2w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qS9RdPXv2w p {
  color: #767676;
}
.cid-qS9RdPXv2w .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qS9RdPXv2w .main {
  flex-direction: row-reverse;
}
.cid-qS9RdPXv2w .row-element,
.cid-qS9RdPXv2w .image-element {
  padding: 0;
}
.cid-qS9RdPXv2w .image-element {
  display: flex;
  justify-content: center;
}
.cid-qS9RdPXv2w .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qS9RdPXv2w .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qS9RdPXv2w .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qS9RdPXv2w .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qS9RdPXv2w .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qS9RdPXv2w .text-content {
    padding: 2rem 1rem;
  }
  .cid-qS9RdPXv2w .underline .line {
    height: 2px;
  }
  .cid-qS9RdPXv2w .mbr-title,
  .cid-qS9RdPXv2w .underline,
  .cid-qS9RdPXv2w .mbr-text,
  .cid-qS9RdPXv2w .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qS9RdPXv2w .mbr-title,
.cid-qS9RdPXv2w .underline {
  text-align: left;
}
.cid-qSa45QTQBf {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSa45QTQBf .container-fluid {
  padding: 0 3rem;
}
.cid-qSa45QTQBf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSa45QTQBf .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qSa45QTQBf .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qSa45QTQBf .card .card-wrapper {
  height: 1%;
}
.cid-qSa45QTQBf .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qSa45QTQBf .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qSa45QTQBf .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #28d4e2;
}
.cid-qSa45QTQBf .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qSa45QTQBf .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qSa45QTQBf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSa45QTQBf .mbr-section-subtitle {
  text-align: left;
  color: #5b686b;
}
.cid-qSa45QTQBf .mbr-section-title,
.cid-qSa45QTQBf .underline {
  color: #84510e;
}
.cid-qSa5FWlKXa {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSa5FWlKXa .container-fluid {
  padding: 0 3rem;
}
.cid-qSa5FWlKXa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSa5FWlKXa .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qSa5FWlKXa .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qSa5FWlKXa .card .card-wrapper {
  height: 1%;
}
.cid-qSa5FWlKXa .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qSa5FWlKXa .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qSa5FWlKXa .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #28d4e2;
}
.cid-qSa5FWlKXa .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qSa5FWlKXa .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qSa5FWlKXa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSaaqSa5qP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSaaqSa5qP .container-fluid {
  padding: 0 3rem;
}
.cid-qSaaqSa5qP .media-container-column {
  padding: 0 2rem;
}
.cid-qSaaqSa5qP .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qSaaqSa5qP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSaaqSa5qP .mbr-section-subtitle {
  text-align: center;
  color: #84510e;
}
.cid-qSabcluiAh {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSabcluiAh .mbr-shop {
  display: table;
  width: 100%;
}
.cid-qSabcluiAh .mbr-shop .row {
  margin: 0;
}
.cid-qSabcluiAh .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-qSabcluiAh .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-qSabcluiAh .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-qSabcluiAh .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-qSabcluiAh .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-qSabcluiAh .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-qSabcluiAh .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-qSabcluiAh .mbr-shop .hide-modal {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSabcluiAh .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-qSabcluiAh .mbr-shop .filter-by-pu,
.cid-qSabcluiAh .mbr-shop .filter-by-pd,
.cid-qSabcluiAh .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-qSabcluiAh .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-qSabcluiAh .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-qSabcluiAh .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-qSabcluiAh .mbr-shop .galleryItem h4,
.cid-qSabcluiAh .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-qSabcluiAh .mbr-shop .galleryItem h5,
.cid-qSabcluiAh .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-qSabcluiAh .mbr-shop .galleryItem p,
.cid-qSabcluiAh .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-qSabcluiAh .mbr-shop .item-button {
  text-align: center;
}
.cid-qSabcluiAh .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-qSabcluiAh .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-qSabcluiAh .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-qSabcluiAh .mbr-shop .sidebar-block {
  position: relative;
}
.cid-qSabcluiAh .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-qSabcluiAh .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-qSabcluiAh .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-qSabcluiAh .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item__hided h4,
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item__hided h5,
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-qSabcluiAh .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-qSabcluiAh .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-qSabcluiAh .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-qSabcluiAh .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-qSabcluiAh .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-qSabcluiAh .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-qSabcluiAh .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-qSabcluiAh .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-qSabcluiAh .mbr-shop .range-controls {
  position: relative;
}
.cid-qSabcluiAh .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-qSabcluiAh .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-qSabcluiAh .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-qSabcluiAh .mbr-shop .toggle:hover,
.cid-qSabcluiAh .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-qSabcluiAh .mbr-shop .min-toggle {
  left: 0;
}
.cid-qSabcluiAh .mbr-shop .max-toggle {
  right: 0;
}
.cid-qSabcluiAh .mbr-shop .hided-by-price {
  display: none;
}
.cid-qSabcluiAh .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-qSabcluiAh .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-qSabcluiAh .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qSabcluiAh .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-qSabcluiAh .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-qSabcluiAh .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-qSabcluiAh .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-qSabcluiAh .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-qSabcluiAh .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qSabcluiAh .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSabcluiAh .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qSabcluiAh .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qSabcluiAh .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-qSabcluiAh .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-qSabcluiAh .mbr-shop .shop-items .onsale,
.cid-qSabcluiAh .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-qSabcluiAh .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-qSabcluiAh .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-qSabcluiAh .mbr-shop .price-range {
  display: inline-block;
}
.cid-qSabcluiAh .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-qSabcluiAh .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-qSabcluiAh .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-qSabcluiAh .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-qSabcluiAh .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-qSabcluiAh .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-qSabcluiAh .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-qSabcluiAh .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-qSabcluiAh .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-qSabcluiAh .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-qSabcluiAh .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-qSabcluiAh .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qSabcluiAh .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-qSabcluiAh .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-qSabcluiAh .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-qSabcluiAh .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-qSabcluiAh .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-qSabcluiAh .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-qSabcluiAh .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-qSabcluiAh .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-qSabcluiAh .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-qSabcluiAh .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-qSabcluiAh .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-qSabcluiAh .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-qSabcluiAh .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-qSabcluiAh .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-qSabcluiAh .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-qSabcluiAh .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-qSabcluiAh .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-qSabcluiAh .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-qSabcluiAh .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSabcluiAh .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-qSabcluiAh .range-controls {
    display: block !important;
  }
}
.cid-qSabcluiAh .card-description UL {
  text-align: left;
}
.cid-qS9QwDbPtm {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qS9QwDbPtm h2 {
  text-align: center;
}
.cid-qS9QwDbPtm h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qS9QwDbPtm p {
  color: #767676;
}
.cid-qS9QwDbPtm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qS9QwDbPtm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qS9QwDbPtm .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-qS9QwDbPtm .mbr-section-subtitle {
  color: #767676;
}
.cid-qS9QwDbPtm .card-title {
  font-weight: 500;
}
.cid-qS9QwDbPtm .card-img {
  text-align: inherit;
}
.cid-qS9QwDbPtm .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qS9QwDbPtm .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qS9QwDbPtm .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qS9QwDbPtm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-qS9QwDbPtm .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-qS9QwDbPtm .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-qS9QwDbPtm .mbr-section-title {
  color: #84510e;
}
.cid-rJx6zFTrjg {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx6zFTrjg .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx6zFTrjg .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx6zFTrjg .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx6zFTrjg .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx6zFTrjg .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx6zFTrjg .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx6zFTrjg .card .panel-body {
  color: #767676;
}
.cid-rJx6zFTrjg H2 {
  color: #84510e;
}
.cid-rJx6zFTrjg H4 {
  color: #5b686b;
}
.cid-qS9POo5Egn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qS9POo5Egn .title {
  margin-bottom: 2rem;
}
.cid-qS9POo5Egn .mbr-section-subtitle {
  color: #767676;
}
.cid-qS9POo5Egn a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qS9POo5Egn a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qS9POo5Egn .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qS9POo5Egn .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qS9POo5Egn H2 {
  color: #84510e;
}
.cid-qSsCchnFo7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qSsCchnFo7 .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qSsCchnFo7 .social-list a:focus {
  text-decoration: none;
}
.cid-qSsCchnFo7 H2 {
  color: #ffffff;
}
.cid-qS9OAcWJEY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qS9OAcWJEY .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qS9OAcWJEY .content {
    text-align: center;
  }
  .cid-qS9OAcWJEY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qS9OAcWJEY .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qS9OAcWJEY .input-group-btn {
  display: inline-block;
}
.cid-qS9OAcWJEY .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qS9OAcWJEY .img-logo img {
  height: 6rem;
}
.cid-qS9OAcWJEY [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qS9OAcWJEY [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qS9OAcWJEY .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qS9OAcWJEY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qS9OAcWJEY .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qS9OAcWJEY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qS9OAcWJEY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qS9OAcWJEY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qS9OAcWJEY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qS9OAcWJEY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qS9OAcWJEY .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qS9OAcWJEY form .input-group input.form-control,
.cid-qS9OAcWJEY form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qS9OAcWJEY .form-inline {
  justify-content: center;
}
.cid-qS9OAcWJEY .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qS9OAcWJEY .foot-logo {
    text-align: center !important;
  }
  .cid-qS9OAcWJEY .foot-title {
    text-align: center !important;
  }
  .cid-qS9OAcWJEY .mbr-text {
    text-align: center !important;
  }
}
.cid-qSa0NZmTHR {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSa0NZmTHR .container-fluid {
  padding: 0 3rem;
}
.cid-qSa0NZmTHR ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSa0NZmTHR ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSa0NZmTHR ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSa0NZmTHR ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSa0NZmTHR .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSa0NZmTHR .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSa0NZmTHR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSa0NZmTHR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qS9Oyr5q89 {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qS9Oyr5q89 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qS9Oyr5q89 .btn-social {
  border: none !important;
}
.cid-qS9Oyr5q89 [class^="socicon-"]:before,
.cid-qS9Oyr5q89 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qS9Oyr5q89 .btn {
    font-size: 20px !important;
  }
}
.cid-qS9Oyr5q89 .mbr-section-title {
  color: #ffffff;
}
.cid-qSst5sW6tb .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;
  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-qSst5sW6tb .nav-item:focus,
.cid-qSst5sW6tb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSst5sW6tb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSst5sW6tb .nav-item .nav-link {
    position: relative;
  }
  .cid-qSst5sW6tb .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSst5sW6tb .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSst5sW6tb .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSst5sW6tb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSst5sW6tb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSst5sW6tb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSst5sW6tb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSst5sW6tb .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSst5sW6tb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSst5sW6tb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSst5sW6tb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSst5sW6tb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSst5sW6tb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSst5sW6tb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSst5sW6tb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSst5sW6tb .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-qSst5sW6tb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSst5sW6tb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSst5sW6tb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSst5sW6tb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSst5sW6tb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSst5sW6tb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSst5sW6tb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSst5sW6tb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSst5sW6tb .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-qSst5sW6tb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSst5sW6tb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSst5sW6tb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSst5sW6tb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSst5sW6tb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSst5sW6tb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSst5sW6tb .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSst5sW6tb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSst5sW6tb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSst5sW6tb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSst5sW6tb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSst5sW6tb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSst5sW6tb .dropdown-item.active,
.cid-qSst5sW6tb .dropdown-item:active {
  background-color: transparent;
}
.cid-qSst5sW6tb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSst5sW6tb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSst5sW6tb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSst5sW6tb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSst5sW6tb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSst5sW6tb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSst5sW6tb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSst5sW6tb .navbar-buttons {
  text-align: center;
}
.cid-qSst5sW6tb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSst5sW6tb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSst5sW6tb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSst5sW6tb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSst5sW6tb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSst5sW6tb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSst5sW6tb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSst5sW6tb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSst5sW6tb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSst5sW6tb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSst5sW6tb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSst5sW6tb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSst5sW6tb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSst5sW6tb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSst5sW6tb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSst5sW6tb .navbar {
    height: 77px;
  }
  .cid-qSst5sW6tb .navbar.opened {
    height: auto;
  }
  .cid-qSst5sW6tb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSst5vdtuI {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x209916.jpg");
}
.cid-qSst5vdtuI .container-fluid {
  padding: 0 3rem;
}
.cid-qSst5vdtuI .media-container-column {
  padding: 0 2rem;
}
.cid-qSst5vdtuI .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSst5vdtuI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSst5vdtuI .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSst5vdtuI .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-rluRanufCL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fffeea;
}
.cid-rluRanufCL .mbr-text,
.cid-rluRanufCL blockquote {
  color: #232323;
}
.cid-rluRanufCL .mbr-text DIV {
  text-align: center;
  color: #5b686b;
}
.cid-rluR83DZ7h {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #fffeea;
}
.cid-rBCMrTvjpC {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x209917.jpg");
}
.cid-rBCMrTvjpC .container-fluid {
  padding: 0 3rem;
}
.cid-rBCMrTvjpC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rBCMrTvjpC .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rBCMrTvjpC .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rBCMrTvjpC .card .card-wrapper {
  height: 1%;
}
.cid-rBCMrTvjpC .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rBCMrTvjpC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rBCMrTvjpC .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #28d4e2;
}
.cid-rBCMrTvjpC .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rBCMrTvjpC .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rBCMrTvjpC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rBCMrTvjpC .mbr-section-subtitle {
  text-align: left;
  color: #5b686b;
}
.cid-rBCMrTvjpC .mbr-section-title,
.cid-rBCMrTvjpC .underline {
  color: #84510e;
}
.cid-qSst5F2N9C {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSst5F2N9C .container-fluid {
  padding: 0 3rem;
}
.cid-qSst5F2N9C .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSst5F2N9C .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qSst5F2N9C .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qSst5F2N9C .card .card-wrapper {
  height: 1%;
}
.cid-qSst5F2N9C .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qSst5F2N9C .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qSst5F2N9C .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #28d4e2;
}
.cid-qSst5F2N9C .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qSst5F2N9C .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qSst5F2N9C .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSst5JJo79 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSst5JJo79 .container-fluid {
  padding: 0 3rem;
}
.cid-qSst5JJo79 .media-container-column {
  padding: 0 2rem;
}
.cid-qSst5JJo79 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qSst5JJo79 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSst5JJo79 .mbr-section-subtitle {
  text-align: center;
  color: #84510e;
}
.cid-rBCMNEHgIH {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rBCMNEHgIH .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rBCMNEHgIH .mbr-shop .row {
  margin: 0;
}
.cid-rBCMNEHgIH .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rBCMNEHgIH .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rBCMNEHgIH .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rBCMNEHgIH .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rBCMNEHgIH .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rBCMNEHgIH .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rBCMNEHgIH .mbr-shop .hide-modal {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rBCMNEHgIH .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rBCMNEHgIH .mbr-shop .filter-by-pu,
.cid-rBCMNEHgIH .mbr-shop .filter-by-pd,
.cid-rBCMNEHgIH .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rBCMNEHgIH .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rBCMNEHgIH .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem h4,
.cid-rBCMNEHgIH .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem h5,
.cid-rBCMNEHgIH .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-rBCMNEHgIH .mbr-shop .galleryItem p,
.cid-rBCMNEHgIH .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-rBCMNEHgIH .mbr-shop .item-button {
  text-align: center;
}
.cid-rBCMNEHgIH .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rBCMNEHgIH .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rBCMNEHgIH .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rBCMNEHgIH .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rBCMNEHgIH .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rBCMNEHgIH .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item__hided h4,
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item__hided h5,
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rBCMNEHgIH .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rBCMNEHgIH .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rBCMNEHgIH .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rBCMNEHgIH .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rBCMNEHgIH .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-rBCMNEHgIH .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rBCMNEHgIH .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rBCMNEHgIH .mbr-shop .range-controls {
  position: relative;
}
.cid-rBCMNEHgIH .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rBCMNEHgIH .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rBCMNEHgIH .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rBCMNEHgIH .mbr-shop .toggle:hover,
.cid-rBCMNEHgIH .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rBCMNEHgIH .mbr-shop .min-toggle {
  left: 0;
}
.cid-rBCMNEHgIH .mbr-shop .max-toggle {
  right: 0;
}
.cid-rBCMNEHgIH .mbr-shop .hided-by-price {
  display: none;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rBCMNEHgIH .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rBCMNEHgIH .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rBCMNEHgIH .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rBCMNEHgIH .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rBCMNEHgIH .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rBCMNEHgIH .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rBCMNEHgIH .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rBCMNEHgIH .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rBCMNEHgIH .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rBCMNEHgIH .mbr-shop .shop-items .onsale,
.cid-rBCMNEHgIH .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rBCMNEHgIH .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rBCMNEHgIH .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rBCMNEHgIH .mbr-shop .price-range {
  display: inline-block;
}
.cid-rBCMNEHgIH .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rBCMNEHgIH .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rBCMNEHgIH .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rBCMNEHgIH .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rBCMNEHgIH .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rBCMNEHgIH .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rBCMNEHgIH .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rBCMNEHgIH .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rBCMNEHgIH .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rBCMNEHgIH .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rBCMNEHgIH .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rBCMNEHgIH .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rBCMNEHgIH .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rBCMNEHgIH .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rBCMNEHgIH .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rBCMNEHgIH .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rBCMNEHgIH .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rBCMNEHgIH .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rBCMNEHgIH .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rBCMNEHgIH .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rBCMNEHgIH .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rBCMNEHgIH .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rBCMNEHgIH .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rBCMNEHgIH .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rBCMNEHgIH .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rBCMNEHgIH .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-rBCMNEHgIH .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-rBCMNEHgIH .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-rBCMNEHgIH .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-rBCMNEHgIH .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rBCMNEHgIH .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rBCMNEHgIH .range-controls {
    display: block !important;
  }
}
.cid-rBCMNEHgIH .card-description UL {
  text-align: left;
}
.cid-rJx6ZfsBoI {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx6ZfsBoI .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx6ZfsBoI .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx6ZfsBoI .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx6ZfsBoI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx6ZfsBoI .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx6ZfsBoI .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx6ZfsBoI .card .panel-body {
  color: #767676;
}
.cid-rJx6ZfsBoI H2 {
  color: #84510e;
}
.cid-rJx6ZfsBoI H4 {
  color: #5b686b;
}
.cid-qSst61yTmx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSst61yTmx .title {
  margin-bottom: 2rem;
}
.cid-qSst61yTmx .mbr-section-subtitle {
  color: #767676;
}
.cid-qSst61yTmx a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSst61yTmx a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSst61yTmx .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSst61yTmx .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSst61yTmx H2 {
  color: #84510e;
}
.cid-qSst63MEKm {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qSst63MEKm .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qSst63MEKm .social-list a:focus {
  text-decoration: none;
}
.cid-qSst63MEKm H2 {
  color: #ffffff;
}
#instagram-feed-block-11 .inst__title {
  color: #84510e;
}
.cid-qSst67ZseQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSst67ZseQ .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSst67ZseQ .content {
    text-align: center;
  }
  .cid-qSst67ZseQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSst67ZseQ .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSst67ZseQ .input-group-btn {
  display: inline-block;
}
.cid-qSst67ZseQ .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSst67ZseQ .img-logo img {
  height: 6rem;
}
.cid-qSst67ZseQ [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSst67ZseQ [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSst67ZseQ .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSst67ZseQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSst67ZseQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSst67ZseQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSst67ZseQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSst67ZseQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSst67ZseQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSst67ZseQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSst67ZseQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSst67ZseQ form .input-group input.form-control,
.cid-qSst67ZseQ form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSst67ZseQ .form-inline {
  justify-content: center;
}
.cid-qSst67ZseQ .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSst67ZseQ .foot-logo {
    text-align: center !important;
  }
  .cid-qSst67ZseQ .foot-title {
    text-align: center !important;
  }
  .cid-qSst67ZseQ .mbr-text {
    text-align: center !important;
  }
}
.cid-qSst6blh4V {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSst6blh4V .container-fluid {
  padding: 0 3rem;
}
.cid-qSst6blh4V ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSst6blh4V ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSst6blh4V ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSst6blh4V ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSst6blh4V .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSst6blh4V .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSst6blh4V .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSst6blh4V .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSst6et84P {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSst6et84P .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSst6et84P .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSst6et84P .btn-social {
  border: none !important;
}
.cid-qSst6et84P [class^="socicon-"]:before,
.cid-qSst6et84P [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSst6et84P .btn {
    font-size: 20px !important;
  }
}
.cid-qSst6et84P .mbr-section-title {
  color: #ffffff;
}
.cid-qSsCDqvmLI .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;
  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-qSsCDqvmLI .nav-item:focus,
.cid-qSsCDqvmLI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsCDqvmLI .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsCDqvmLI .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsCDqvmLI .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsCDqvmLI .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsCDqvmLI .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsCDqvmLI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsCDqvmLI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsCDqvmLI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsCDqvmLI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsCDqvmLI .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsCDqvmLI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsCDqvmLI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsCDqvmLI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsCDqvmLI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsCDqvmLI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsCDqvmLI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsCDqvmLI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsCDqvmLI .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-qSsCDqvmLI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsCDqvmLI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsCDqvmLI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsCDqvmLI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsCDqvmLI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsCDqvmLI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsCDqvmLI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsCDqvmLI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsCDqvmLI .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-qSsCDqvmLI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsCDqvmLI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsCDqvmLI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsCDqvmLI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsCDqvmLI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsCDqvmLI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsCDqvmLI .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsCDqvmLI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsCDqvmLI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsCDqvmLI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsCDqvmLI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsCDqvmLI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsCDqvmLI .dropdown-item.active,
.cid-qSsCDqvmLI .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsCDqvmLI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsCDqvmLI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsCDqvmLI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsCDqvmLI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsCDqvmLI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsCDqvmLI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsCDqvmLI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsCDqvmLI .navbar-buttons {
  text-align: center;
}
.cid-qSsCDqvmLI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsCDqvmLI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsCDqvmLI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsCDqvmLI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsCDqvmLI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsCDqvmLI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsCDqvmLI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsCDqvmLI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsCDqvmLI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsCDqvmLI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsCDqvmLI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsCDqvmLI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsCDqvmLI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsCDqvmLI .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsCDqvmLI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsCDqvmLI .navbar {
    height: 77px;
  }
  .cid-qSsCDqvmLI .navbar.opened {
    height: auto;
  }
  .cid-qSsCDqvmLI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsCDsWCXn {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsCDsWCXn .container-fluid {
  padding: 0 3rem;
}
.cid-qSsCDsWCXn .media-container-column {
  padding: 0 2rem;
}
.cid-qSsCDsWCXn .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsCDsWCXn .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsCDsWCXn .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsCDsWCXn .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsDQRjzh4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsDQRjzh4 .mbr-text {
  color: #767676;
}
.cid-qSsDQRjzh4 h4 {
  text-align: center;
}
.cid-qSsDQRjzh4 p {
  text-align: center;
}
.cid-qSsDQRjzh4 .card .card-img {
  display: flex;
  justify-content: center;
}
.cid-qSsDQRjzh4 .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-qSsDQRjzh4 .card:hover .step:before {
  transform: scale(1);
}
.cid-qSsDQRjzh4 .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qSsDQRjzh4 .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #28d4e2, #ff5ecb);
  border-radius: 50%;
}
.cid-qSsDQRjzh4 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsDQRjzh4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-qSsDQRjzh4 .mbr-section-title,
  .cid-qSsDQRjzh4 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qSsDQRjzh4 .mbr-section-title,
.cid-qSsDQRjzh4 .underline {
  color: #84510e;
}
.cid-rJx9xf5ngU {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx9xf5ngU .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx9xf5ngU .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx9xf5ngU .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx9xf5ngU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx9xf5ngU .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx9xf5ngU .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx9xf5ngU .card .panel-body {
  color: #767676;
}
.cid-rJx9xf5ngU H2 {
  color: #84510e;
}
.cid-rJx9xf5ngU H4 {
  color: #5b686b;
}
.cid-qSsCDOfFaF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsCDOfFaF .title {
  margin-bottom: 2rem;
}
.cid-qSsCDOfFaF .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsCDOfFaF a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsCDOfFaF a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsCDOfFaF .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsCDOfFaF .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsCDOfFaF H2 {
  color: #84510e;
}
.cid-qSsCDRnDVL {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qSsCDRnDVL .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qSsCDRnDVL .social-list a:focus {
  text-decoration: none;
}
.cid-qSsCDRnDVL H2 {
  color: #ffffff;
}
.cid-qSsCDY1Yvl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsCDY1Yvl .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsCDY1Yvl .content {
    text-align: center;
  }
  .cid-qSsCDY1Yvl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsCDY1Yvl .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsCDY1Yvl .input-group-btn {
  display: inline-block;
}
.cid-qSsCDY1Yvl .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsCDY1Yvl .img-logo img {
  height: 6rem;
}
.cid-qSsCDY1Yvl [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsCDY1Yvl [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsCDY1Yvl .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsCDY1Yvl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsCDY1Yvl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsCDY1Yvl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsCDY1Yvl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsCDY1Yvl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsCDY1Yvl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsCDY1Yvl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsCDY1Yvl .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsCDY1Yvl form .input-group input.form-control,
.cid-qSsCDY1Yvl form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsCDY1Yvl .form-inline {
  justify-content: center;
}
.cid-qSsCDY1Yvl .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsCDY1Yvl .foot-logo {
    text-align: center !important;
  }
  .cid-qSsCDY1Yvl .foot-title {
    text-align: center !important;
  }
  .cid-qSsCDY1Yvl .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsCE255mO {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsCE255mO .container-fluid {
  padding: 0 3rem;
}
.cid-qSsCE255mO ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsCE255mO ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsCE255mO ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsCE255mO ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsCE255mO .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsCE255mO .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsCE255mO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsCE255mO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsCE5IC98 {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsCE5IC98 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsCE5IC98 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsCE5IC98 .btn-social {
  border: none !important;
}
.cid-qSsCE5IC98 [class^="socicon-"]:before,
.cid-qSsCE5IC98 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsCE5IC98 .btn {
    font-size: 20px !important;
  }
}
.cid-qSsCE5IC98 .mbr-section-title {
  color: #ffffff;
}
.cid-qSsFPor0T8 .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;
  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-qSsFPor0T8 .nav-item:focus,
.cid-qSsFPor0T8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsFPor0T8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsFPor0T8 .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsFPor0T8 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsFPor0T8 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsFPor0T8 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsFPor0T8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsFPor0T8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsFPor0T8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsFPor0T8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsFPor0T8 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsFPor0T8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsFPor0T8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsFPor0T8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsFPor0T8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsFPor0T8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsFPor0T8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsFPor0T8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsFPor0T8 .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-qSsFPor0T8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsFPor0T8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsFPor0T8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsFPor0T8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsFPor0T8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsFPor0T8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsFPor0T8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsFPor0T8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsFPor0T8 .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-qSsFPor0T8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsFPor0T8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsFPor0T8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsFPor0T8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsFPor0T8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsFPor0T8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsFPor0T8 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsFPor0T8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsFPor0T8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsFPor0T8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsFPor0T8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsFPor0T8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsFPor0T8 .dropdown-item.active,
.cid-qSsFPor0T8 .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsFPor0T8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsFPor0T8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsFPor0T8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsFPor0T8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsFPor0T8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsFPor0T8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsFPor0T8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsFPor0T8 .navbar-buttons {
  text-align: center;
}
.cid-qSsFPor0T8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsFPor0T8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsFPor0T8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsFPor0T8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsFPor0T8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsFPor0T8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsFPor0T8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsFPor0T8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsFPor0T8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsFPor0T8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsFPor0T8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsFPor0T8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsFPor0T8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsFPor0T8 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsFPor0T8 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsFPor0T8 .navbar {
    height: 77px;
  }
  .cid-qSsFPor0T8 .navbar.opened {
    height: auto;
  }
  .cid-qSsFPor0T8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsFPrzIQh {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsFPrzIQh .container-fluid {
  padding: 0 3rem;
}
.cid-qSsFPrzIQh .media-container-column {
  padding: 0 2rem;
}
.cid-qSsFPrzIQh .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsFPrzIQh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsFPrzIQh .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsFPrzIQh .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsGkmkio0 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsGkmkio0 .container-fluid {
  padding: 0 3rem;
}
.cid-qSsGkmkio0 .media-container-column {
  padding: 0 2rem;
}
.cid-qSsGkmkio0 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-qSsGkmkio0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsGkmkio0 .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsGkmkio0 .mbr-section-title SPAN {
  color: #465052;
}
.cid-qSsHT9kdoK {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsHT9kdoK .mbr-text,
.cid-qSsHT9kdoK blockquote {
  color: #232323;
}
.cid-qSsHT9kdoK .mbr-text DIV {
  color: #5b686b;
}
.cid-rJx9HaS9ia {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx9HaS9ia .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx9HaS9ia .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx9HaS9ia .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx9HaS9ia .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx9HaS9ia .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx9HaS9ia .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx9HaS9ia .card .panel-body {
  color: #767676;
}
.cid-rJx9HaS9ia H2 {
  color: #84510e;
}
.cid-rJx9HaS9ia H4 {
  color: #5b686b;
}
.cid-qSsFPAWbs5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsFPAWbs5 .title {
  margin-bottom: 2rem;
}
.cid-qSsFPAWbs5 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsFPAWbs5 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsFPAWbs5 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsFPAWbs5 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsFPAWbs5 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsFPAWbs5 H2 {
  color: #84510e;
}
.cid-qSsFPK1okG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsFPK1okG .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsFPK1okG .content {
    text-align: center;
  }
  .cid-qSsFPK1okG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsFPK1okG .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsFPK1okG .input-group-btn {
  display: inline-block;
}
.cid-qSsFPK1okG .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsFPK1okG .img-logo img {
  height: 6rem;
}
.cid-qSsFPK1okG [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsFPK1okG [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsFPK1okG .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsFPK1okG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsFPK1okG .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsFPK1okG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsFPK1okG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsFPK1okG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsFPK1okG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsFPK1okG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsFPK1okG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsFPK1okG form .input-group input.form-control,
.cid-qSsFPK1okG form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsFPK1okG .form-inline {
  justify-content: center;
}
.cid-qSsFPK1okG .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsFPK1okG .foot-logo {
    text-align: center !important;
  }
  .cid-qSsFPK1okG .foot-title {
    text-align: center !important;
  }
  .cid-qSsFPK1okG .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsFPOaqDp {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsFPOaqDp .container-fluid {
  padding: 0 3rem;
}
.cid-qSsFPOaqDp ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsFPOaqDp ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsFPOaqDp ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsFPOaqDp ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsFPOaqDp .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsFPOaqDp .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsFPOaqDp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsFPOaqDp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsFPRAi5i {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsFPRAi5i .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsFPRAi5i .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsFPRAi5i .btn-social {
  border: none !important;
}
.cid-qSsFPRAi5i [class^="socicon-"]:before,
.cid-qSsFPRAi5i [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsFPRAi5i .btn {
    font-size: 20px !important;
  }
}
.cid-qSsFPRAi5i .mbr-section-title {
  color: #ffffff;
}
.cid-qSsIOZtq6d .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;
  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-qSsIOZtq6d .nav-item:focus,
.cid-qSsIOZtq6d .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsIOZtq6d .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsIOZtq6d .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsIOZtq6d .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsIOZtq6d .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsIOZtq6d .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsIOZtq6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsIOZtq6d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsIOZtq6d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsIOZtq6d .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsIOZtq6d .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsIOZtq6d .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsIOZtq6d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsIOZtq6d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsIOZtq6d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsIOZtq6d .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsIOZtq6d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsIOZtq6d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsIOZtq6d .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-qSsIOZtq6d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsIOZtq6d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsIOZtq6d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsIOZtq6d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsIOZtq6d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsIOZtq6d .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsIOZtq6d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsIOZtq6d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsIOZtq6d .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-qSsIOZtq6d .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsIOZtq6d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsIOZtq6d .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsIOZtq6d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsIOZtq6d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsIOZtq6d .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsIOZtq6d .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsIOZtq6d .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsIOZtq6d .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsIOZtq6d .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsIOZtq6d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsIOZtq6d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsIOZtq6d .dropdown-item.active,
.cid-qSsIOZtq6d .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsIOZtq6d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsIOZtq6d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsIOZtq6d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsIOZtq6d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsIOZtq6d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsIOZtq6d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsIOZtq6d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsIOZtq6d .navbar-buttons {
  text-align: center;
}
.cid-qSsIOZtq6d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsIOZtq6d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsIOZtq6d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsIOZtq6d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsIOZtq6d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsIOZtq6d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsIOZtq6d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsIOZtq6d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsIOZtq6d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsIOZtq6d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsIOZtq6d .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsIOZtq6d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsIOZtq6d .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsIOZtq6d .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsIOZtq6d .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsIOZtq6d .navbar {
    height: 77px;
  }
  .cid-qSsIOZtq6d .navbar.opened {
    height: auto;
  }
  .cid-qSsIOZtq6d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsIP2H9uU {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsIP2H9uU .container-fluid {
  padding: 0 3rem;
}
.cid-qSsIP2H9uU .media-container-column {
  padding: 0 2rem;
}
.cid-qSsIP2H9uU .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsIP2H9uU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsIP2H9uU .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsIP2H9uU .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsIP5v4b0 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsIP5v4b0 .container-fluid {
  padding: 0 3rem;
}
.cid-qSsIP5v4b0 .media-container-column {
  padding: 0 2rem;
}
.cid-qSsIP5v4b0 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-qSsIP5v4b0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsIP5v4b0 .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsIP5v4b0 .mbr-section-title SPAN {
  color: #465052;
}
.cid-qSsIP8aSco {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsIP8aSco .mbr-text,
.cid-qSsIP8aSco blockquote {
  color: #232323;
}
.cid-qSsIP8aSco .mbr-text DIV {
  color: #5b686b;
}
.cid-rJx9NEgnVF {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx9NEgnVF .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx9NEgnVF .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx9NEgnVF .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx9NEgnVF .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx9NEgnVF .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx9NEgnVF .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx9NEgnVF .card .panel-body {
  color: #767676;
}
.cid-rJx9NEgnVF H2 {
  color: #84510e;
}
.cid-rJx9NEgnVF H4 {
  color: #5b686b;
}
.cid-qSsIPcTW36 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsIPcTW36 .title {
  margin-bottom: 2rem;
}
.cid-qSsIPcTW36 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsIPcTW36 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsIPcTW36 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsIPcTW36 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsIPcTW36 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsIPcTW36 H2 {
  color: #84510e;
}
.cid-qSsIPkuFER {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsIPkuFER .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsIPkuFER .content {
    text-align: center;
  }
  .cid-qSsIPkuFER .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsIPkuFER .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsIPkuFER .input-group-btn {
  display: inline-block;
}
.cid-qSsIPkuFER .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsIPkuFER .img-logo img {
  height: 6rem;
}
.cid-qSsIPkuFER [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsIPkuFER [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsIPkuFER .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsIPkuFER .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsIPkuFER .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsIPkuFER .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsIPkuFER .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsIPkuFER .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsIPkuFER .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsIPkuFER .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsIPkuFER .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsIPkuFER form .input-group input.form-control,
.cid-qSsIPkuFER form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsIPkuFER .form-inline {
  justify-content: center;
}
.cid-qSsIPkuFER .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsIPkuFER .foot-logo {
    text-align: center !important;
  }
  .cid-qSsIPkuFER .foot-title {
    text-align: center !important;
  }
  .cid-qSsIPkuFER .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsIPpw9Nj {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsIPpw9Nj .container-fluid {
  padding: 0 3rem;
}
.cid-qSsIPpw9Nj ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsIPpw9Nj ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsIPpw9Nj ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsIPpw9Nj ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsIPpw9Nj .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsIPpw9Nj .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsIPpw9Nj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsIPpw9Nj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsIPtxB1F {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsIPtxB1F .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsIPtxB1F .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsIPtxB1F .btn-social {
  border: none !important;
}
.cid-qSsIPtxB1F [class^="socicon-"]:before,
.cid-qSsIPtxB1F [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsIPtxB1F .btn {
    font-size: 20px !important;
  }
}
.cid-qSsIPtxB1F .mbr-section-title {
  color: #ffffff;
}
.cid-qSsKY3lTRE .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;
  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-qSsKY3lTRE .nav-item:focus,
.cid-qSsKY3lTRE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsKY3lTRE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsKY3lTRE .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsKY3lTRE .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsKY3lTRE .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsKY3lTRE .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsKY3lTRE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsKY3lTRE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsKY3lTRE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsKY3lTRE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsKY3lTRE .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsKY3lTRE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsKY3lTRE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsKY3lTRE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsKY3lTRE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsKY3lTRE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsKY3lTRE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsKY3lTRE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsKY3lTRE .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-qSsKY3lTRE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsKY3lTRE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsKY3lTRE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsKY3lTRE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsKY3lTRE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsKY3lTRE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsKY3lTRE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsKY3lTRE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsKY3lTRE .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-qSsKY3lTRE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsKY3lTRE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsKY3lTRE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsKY3lTRE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsKY3lTRE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsKY3lTRE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsKY3lTRE .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsKY3lTRE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsKY3lTRE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsKY3lTRE .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsKY3lTRE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsKY3lTRE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsKY3lTRE .dropdown-item.active,
.cid-qSsKY3lTRE .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsKY3lTRE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsKY3lTRE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsKY3lTRE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsKY3lTRE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsKY3lTRE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsKY3lTRE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsKY3lTRE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsKY3lTRE .navbar-buttons {
  text-align: center;
}
.cid-qSsKY3lTRE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsKY3lTRE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsKY3lTRE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsKY3lTRE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsKY3lTRE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsKY3lTRE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsKY3lTRE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsKY3lTRE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsKY3lTRE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsKY3lTRE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsKY3lTRE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsKY3lTRE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsKY3lTRE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsKY3lTRE .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsKY3lTRE .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsKY3lTRE .navbar {
    height: 77px;
  }
  .cid-qSsKY3lTRE .navbar.opened {
    height: auto;
  }
  .cid-qSsKY3lTRE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsKY5GimI {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsKY5GimI .container-fluid {
  padding: 0 3rem;
}
.cid-qSsKY5GimI .media-container-column {
  padding: 0 2rem;
}
.cid-qSsKY5GimI .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsKY5GimI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsKY5GimI .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsKY5GimI .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsKY7LPeN {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsKY7LPeN .container-fluid {
  padding: 0 3rem;
}
.cid-qSsKY7LPeN .media-container-column {
  padding: 0 2rem;
}
.cid-qSsKY7LPeN .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-qSsKY7LPeN .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsKY7LPeN .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsKY7LPeN .mbr-section-title SPAN {
  color: #465052;
}
.cid-qSsLr9oaOs {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-qSsLr9oaOs .card-img {
  background-color: #fff;
}
.cid-qSsLr9oaOs .card-img a {
  display: block;
  padding-top: 2rem;
}
.cid-qSsLr9oaOs .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-qSsLr9oaOs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qSsLr9oaOs p {
  text-align: left;
}
.cid-qSsLr9oaOs .mbr-text {
  color: #767676;
}
.cid-qSsLr9oaOs .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSsLr9oaOs .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-qSsLr9oaOs .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rJxa2rCCXA {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJxa2rCCXA .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJxa2rCCXA .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJxa2rCCXA .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJxa2rCCXA .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJxa2rCCXA .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJxa2rCCXA .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJxa2rCCXA .card .panel-body {
  color: #767676;
}
.cid-rJxa2rCCXA H2 {
  color: #84510e;
}
.cid-rJxa2rCCXA H4 {
  color: #5b686b;
}
.cid-qSsKYe1C7v {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsKYe1C7v .title {
  margin-bottom: 2rem;
}
.cid-qSsKYe1C7v .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsKYe1C7v a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsKYe1C7v a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsKYe1C7v .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsKYe1C7v .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsKYe1C7v H2 {
  color: #84510e;
}
.cid-qSsKYgdy5M {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsKYgdy5M .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsKYgdy5M .content {
    text-align: center;
  }
  .cid-qSsKYgdy5M .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsKYgdy5M .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsKYgdy5M .input-group-btn {
  display: inline-block;
}
.cid-qSsKYgdy5M .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsKYgdy5M .img-logo img {
  height: 6rem;
}
.cid-qSsKYgdy5M [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsKYgdy5M [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsKYgdy5M .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsKYgdy5M .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsKYgdy5M .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsKYgdy5M .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsKYgdy5M .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsKYgdy5M .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsKYgdy5M .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsKYgdy5M .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsKYgdy5M .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsKYgdy5M form .input-group input.form-control,
.cid-qSsKYgdy5M form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsKYgdy5M .form-inline {
  justify-content: center;
}
.cid-qSsKYgdy5M .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsKYgdy5M .foot-logo {
    text-align: center !important;
  }
  .cid-qSsKYgdy5M .foot-title {
    text-align: center !important;
  }
  .cid-qSsKYgdy5M .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsKYjLplS {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsKYjLplS .container-fluid {
  padding: 0 3rem;
}
.cid-qSsKYjLplS ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsKYjLplS ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsKYjLplS ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsKYjLplS ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsKYjLplS .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsKYjLplS .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsKYjLplS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsKYjLplS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsKYmK5An {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsKYmK5An .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsKYmK5An .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsKYmK5An .btn-social {
  border: none !important;
}
.cid-qSsKYmK5An [class^="socicon-"]:before,
.cid-qSsKYmK5An [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsKYmK5An .btn {
    font-size: 20px !important;
  }
}
.cid-qSsKYmK5An .mbr-section-title {
  color: #ffffff;
}
.cid-qSsLGgsFG5 .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;
  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-qSsLGgsFG5 .nav-item:focus,
.cid-qSsLGgsFG5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsLGgsFG5 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsLGgsFG5 .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsLGgsFG5 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsLGgsFG5 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsLGgsFG5 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsLGgsFG5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsLGgsFG5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsLGgsFG5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsLGgsFG5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsLGgsFG5 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsLGgsFG5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsLGgsFG5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsLGgsFG5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsLGgsFG5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsLGgsFG5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsLGgsFG5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsLGgsFG5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsLGgsFG5 .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-qSsLGgsFG5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsLGgsFG5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsLGgsFG5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsLGgsFG5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsLGgsFG5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsLGgsFG5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsLGgsFG5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsLGgsFG5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsLGgsFG5 .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-qSsLGgsFG5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsLGgsFG5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsLGgsFG5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsLGgsFG5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsLGgsFG5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsLGgsFG5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsLGgsFG5 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsLGgsFG5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsLGgsFG5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsLGgsFG5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsLGgsFG5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsLGgsFG5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsLGgsFG5 .dropdown-item.active,
.cid-qSsLGgsFG5 .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsLGgsFG5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsLGgsFG5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsLGgsFG5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsLGgsFG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsLGgsFG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsLGgsFG5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsLGgsFG5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsLGgsFG5 .navbar-buttons {
  text-align: center;
}
.cid-qSsLGgsFG5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsLGgsFG5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsLGgsFG5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsLGgsFG5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsLGgsFG5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsLGgsFG5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsLGgsFG5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsLGgsFG5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsLGgsFG5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsLGgsFG5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsLGgsFG5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsLGgsFG5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsLGgsFG5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsLGgsFG5 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsLGgsFG5 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsLGgsFG5 .navbar {
    height: 77px;
  }
  .cid-qSsLGgsFG5 .navbar.opened {
    height: auto;
  }
  .cid-qSsLGgsFG5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsLGjci5a {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsLGjci5a .container-fluid {
  padding: 0 3rem;
}
.cid-qSsLGjci5a .media-container-column {
  padding: 0 2rem;
}
.cid-qSsLGjci5a .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsLGjci5a .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsLGjci5a .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsLGjci5a .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsNdj72ph {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-qSsNdj72ph .mbr-overlay {
  background: #ffa0a4;
  background: linear-gradient(45deg, #ffa0a4, #000000);
}
.cid-qSsNdj72ph .mbr-section-title {
  margin: 0;
}
.cid-qSsNdj72ph H1 {
  color: #84510e;
}
.cid-qSsNdj72ph .mbr-section-subtitle,
.cid-qSsNdj72ph mbr-section-btn I {
  color: #465052;
}
.cid-qSsNdj72ph .mbr-text,
.cid-qSsNdj72ph .mbr-section-btn {
  color: #465052;
}
.cid-rJxaddxX5w {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJxaddxX5w .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJxaddxX5w .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJxaddxX5w .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJxaddxX5w .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJxaddxX5w .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJxaddxX5w .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJxaddxX5w .card .panel-body {
  color: #767676;
}
.cid-rJxaddxX5w H2 {
  color: #84510e;
}
.cid-rJxaddxX5w H4 {
  color: #5b686b;
}
.cid-qSsLGsqVLv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsLGsqVLv .title {
  margin-bottom: 2rem;
}
.cid-qSsLGsqVLv .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsLGsqVLv a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsLGsqVLv a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsLGsqVLv .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsLGsqVLv .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsLGsqVLv H2 {
  color: #84510e;
}
.cid-qSsLGwvxWB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsLGwvxWB .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsLGwvxWB .content {
    text-align: center;
  }
  .cid-qSsLGwvxWB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsLGwvxWB .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsLGwvxWB .input-group-btn {
  display: inline-block;
}
.cid-qSsLGwvxWB .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsLGwvxWB .img-logo img {
  height: 6rem;
}
.cid-qSsLGwvxWB [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsLGwvxWB [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsLGwvxWB .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsLGwvxWB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsLGwvxWB .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsLGwvxWB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsLGwvxWB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsLGwvxWB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsLGwvxWB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsLGwvxWB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsLGwvxWB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsLGwvxWB form .input-group input.form-control,
.cid-qSsLGwvxWB form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsLGwvxWB .form-inline {
  justify-content: center;
}
.cid-qSsLGwvxWB .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsLGwvxWB .foot-logo {
    text-align: center !important;
  }
  .cid-qSsLGwvxWB .foot-title {
    text-align: center !important;
  }
  .cid-qSsLGwvxWB .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsLGBuWS8 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsLGBuWS8 .container-fluid {
  padding: 0 3rem;
}
.cid-qSsLGBuWS8 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsLGBuWS8 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsLGBuWS8 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsLGBuWS8 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsLGBuWS8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsLGBuWS8 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsLGBuWS8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsLGBuWS8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsLGF3Khi {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsLGF3Khi .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsLGF3Khi .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsLGF3Khi .btn-social {
  border: none !important;
}
.cid-qSsLGF3Khi [class^="socicon-"]:before,
.cid-qSsLGF3Khi [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsLGF3Khi .btn {
    font-size: 20px !important;
  }
}
.cid-qSsLGF3Khi .mbr-section-title {
  color: #ffffff;
}
.cid-qSsPOxrOoc .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;
  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-qSsPOxrOoc .nav-item:focus,
.cid-qSsPOxrOoc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsPOxrOoc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsPOxrOoc .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsPOxrOoc .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsPOxrOoc .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsPOxrOoc .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsPOxrOoc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsPOxrOoc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsPOxrOoc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsPOxrOoc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsPOxrOoc .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsPOxrOoc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsPOxrOoc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsPOxrOoc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsPOxrOoc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsPOxrOoc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsPOxrOoc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsPOxrOoc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsPOxrOoc .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-qSsPOxrOoc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsPOxrOoc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsPOxrOoc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsPOxrOoc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsPOxrOoc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsPOxrOoc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsPOxrOoc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsPOxrOoc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsPOxrOoc .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-qSsPOxrOoc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsPOxrOoc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsPOxrOoc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsPOxrOoc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsPOxrOoc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsPOxrOoc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsPOxrOoc .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsPOxrOoc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsPOxrOoc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsPOxrOoc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsPOxrOoc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsPOxrOoc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsPOxrOoc .dropdown-item.active,
.cid-qSsPOxrOoc .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsPOxrOoc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsPOxrOoc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsPOxrOoc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsPOxrOoc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsPOxrOoc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsPOxrOoc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsPOxrOoc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsPOxrOoc .navbar-buttons {
  text-align: center;
}
.cid-qSsPOxrOoc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsPOxrOoc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsPOxrOoc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsPOxrOoc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsPOxrOoc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsPOxrOoc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsPOxrOoc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsPOxrOoc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsPOxrOoc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsPOxrOoc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsPOxrOoc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsPOxrOoc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsPOxrOoc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsPOxrOoc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsPOxrOoc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsPOxrOoc .navbar {
    height: 77px;
  }
  .cid-qSsPOxrOoc .navbar.opened {
    height: auto;
  }
  .cid-qSsPOxrOoc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsPOAe7Nv {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsPOAe7Nv .container-fluid {
  padding: 0 3rem;
}
.cid-qSsPOAe7Nv .media-container-column {
  padding: 0 2rem;
}
.cid-qSsPOAe7Nv .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsPOAe7Nv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsPOAe7Nv .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsPOAe7Nv .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsPOCHwyC {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsPOCHwyC .mbr-overlay {
  background: #ffa0a4;
  background: linear-gradient(45deg, #ffa0a4, #000000);
}
.cid-qSsPOCHwyC .mbr-section-title {
  margin: 0;
}
.cid-qSsPOCHwyC H1 {
  color: #84510e;
}
.cid-qSsPOCHwyC .mbr-section-subtitle,
.cid-qSsPOCHwyC mbr-section-btn I {
  color: #465052;
}
.cid-qSsPOCHwyC .mbr-text,
.cid-qSsPOCHwyC .mbr-section-btn {
  color: #465052;
}
.cid-rJwXZXunDe {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJwXZXunDe .container-fluid {
  padding: 0 3rem;
}
.cid-rJwXZXunDe .mbr-text {
  color: #767676;
}
.cid-rJwXZXunDe .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-rJwXZXunDe p {
  text-align: left;
}
.cid-rJwXZXunDe .card-img {
  text-align: left;
}
.cid-rJwXZXunDe .card .card-img span {
  color: #00e9f2;
  font-size: 60px;
  background: linear-gradient(45deg, #00e9f2, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rJwXZXunDe .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-rJwXZXunDe .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rJwXZXunDe .card-title,
.cid-rJwXZXunDe .card-img {
  color: #ff18b4;
}
.cid-qSsPOEXYUo {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-qSsPOEXYUo .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-qSsPOEXYUo .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-qSsPOEXYUo .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-qSsPOEXYUo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qSsPOEXYUo .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-qSsPOEXYUo .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-qSsPOEXYUo .card .panel-body {
  color: #767676;
}
.cid-qSsPOEXYUo H2 {
  color: #84510e;
}
.cid-qSsPOEXYUo H4 {
  color: #5b686b;
}
.cid-qSsPOHOXU0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsPOHOXU0 .title {
  margin-bottom: 2rem;
}
.cid-qSsPOHOXU0 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsPOHOXU0 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsPOHOXU0 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsPOHOXU0 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsPOHOXU0 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsPOHOXU0 H2 {
  color: #84510e;
}
.cid-qSsPOKiB78 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsPOKiB78 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsPOKiB78 .content {
    text-align: center;
  }
  .cid-qSsPOKiB78 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsPOKiB78 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsPOKiB78 .input-group-btn {
  display: inline-block;
}
.cid-qSsPOKiB78 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsPOKiB78 .img-logo img {
  height: 6rem;
}
.cid-qSsPOKiB78 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsPOKiB78 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsPOKiB78 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsPOKiB78 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsPOKiB78 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsPOKiB78 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsPOKiB78 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsPOKiB78 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsPOKiB78 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsPOKiB78 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsPOKiB78 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsPOKiB78 form .input-group input.form-control,
.cid-qSsPOKiB78 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsPOKiB78 .form-inline {
  justify-content: center;
}
.cid-qSsPOKiB78 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsPOKiB78 .foot-logo {
    text-align: center !important;
  }
  .cid-qSsPOKiB78 .foot-title {
    text-align: center !important;
  }
  .cid-qSsPOKiB78 .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsPONGOsn {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsPONGOsn .container-fluid {
  padding: 0 3rem;
}
.cid-qSsPONGOsn ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsPONGOsn ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsPONGOsn ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsPONGOsn ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsPONGOsn .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsPONGOsn .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsPONGOsn .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsPONGOsn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsPOQBbnl {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsPOQBbnl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsPOQBbnl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsPOQBbnl .btn-social {
  border: none !important;
}
.cid-qSsPOQBbnl [class^="socicon-"]:before,
.cid-qSsPOQBbnl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsPOQBbnl .btn {
    font-size: 20px !important;
  }
}
.cid-qSsPOQBbnl .mbr-section-title {
  color: #ffffff;
}
.cid-qSsRcxubec .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;
  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-qSsRcxubec .nav-item:focus,
.cid-qSsRcxubec .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSsRcxubec .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSsRcxubec .nav-item .nav-link {
    position: relative;
  }
  .cid-qSsRcxubec .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSsRcxubec .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSsRcxubec .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSsRcxubec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qSsRcxubec .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSsRcxubec .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSsRcxubec .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qSsRcxubec .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qSsRcxubec .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSsRcxubec .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSsRcxubec .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSsRcxubec .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSsRcxubec .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSsRcxubec .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSsRcxubec .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSsRcxubec .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-qSsRcxubec .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSsRcxubec .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSsRcxubec .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSsRcxubec .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSsRcxubec .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSsRcxubec .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSsRcxubec .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSsRcxubec .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSsRcxubec .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-qSsRcxubec .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSsRcxubec .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSsRcxubec .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSsRcxubec .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSsRcxubec .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSsRcxubec .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSsRcxubec .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qSsRcxubec .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSsRcxubec .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSsRcxubec .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSsRcxubec .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSsRcxubec .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSsRcxubec .dropdown-item.active,
.cid-qSsRcxubec .dropdown-item:active {
  background-color: transparent;
}
.cid-qSsRcxubec .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSsRcxubec .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSsRcxubec .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSsRcxubec .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qSsRcxubec .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSsRcxubec .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSsRcxubec ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSsRcxubec .navbar-buttons {
  text-align: center;
}
.cid-qSsRcxubec button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSsRcxubec button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSsRcxubec button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSsRcxubec button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsRcxubec button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSsRcxubec button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSsRcxubec nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsRcxubec nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSsRcxubec nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSsRcxubec nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSsRcxubec .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSsRcxubec a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qSsRcxubec .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSsRcxubec .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSsRcxubec .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSsRcxubec .navbar {
    height: 77px;
  }
  .cid-qSsRcxubec .navbar.opened {
    height: auto;
  }
  .cid-qSsRcxubec .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSsRcAg3Tv {
  padding-top: 105px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gjane-bright-white-stripe-2000x2099.jpg");
}
.cid-qSsRcAg3Tv .container-fluid {
  padding: 0 3rem;
}
.cid-qSsRcAg3Tv .media-container-column {
  padding: 0 2rem;
}
.cid-qSsRcAg3Tv .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qSsRcAg3Tv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSsRcAg3Tv .mbr-section-subtitle {
  color: #84510e;
}
.cid-qSsRcAg3Tv .mbr-section-title SPAN {
  color: #ff5ecb;
}
.cid-qSsRAta7GA {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSsRAta7GA H1 {
  color: #986ee7;
}
.cid-qSsRAta7GA H3 {
  color: #767676;
}
.cid-qSsRAta7GA P {
  color: #767676;
}
.cid-qSsRcXSXs4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsRcXSXs4 .title {
  margin-bottom: 2rem;
}
.cid-qSsRcXSXs4 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSsRcXSXs4 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSsRcXSXs4 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSsRcXSXs4 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSsRcXSXs4 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSsRcXSXs4 H2 {
  color: #84510e;
}
.cid-qSsS3F0xu6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSsS3F0xu6 .line {
  background-color: #ff18b4;
  color: #ff18b4;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSsS3F0xu6 .section-text {
  padding: 2rem 0;
}
.cid-qSsS3F0xu6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSsS3F0xu6 .inner-container {
    width: 100% !important;
  }
}
.cid-qSsS7f4jRJ {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qSsS7f4jRJ .google-map {
  height: 25rem;
  position: relative;
}
.cid-qSsS7f4jRJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qSsS7f4jRJ .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-qSsS7f4jRJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qSsS7f4jRJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-qSsRd21z7S {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qSsRd21z7S .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qSsRd21z7S .social-list a:focus {
  text-decoration: none;
}
.cid-qSsRd21z7S H2 {
  color: #ffffff;
}
.cid-qSsRd95osV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSsRd95osV .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsRd95osV .content {
    text-align: center;
  }
  .cid-qSsRd95osV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qSsRd95osV .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qSsRd95osV .input-group-btn {
  display: inline-block;
}
.cid-qSsRd95osV .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qSsRd95osV .img-logo img {
  height: 6rem;
}
.cid-qSsRd95osV [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qSsRd95osV [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qSsRd95osV .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qSsRd95osV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSsRd95osV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qSsRd95osV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSsRd95osV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qSsRd95osV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSsRd95osV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSsRd95osV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSsRd95osV .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSsRd95osV form .input-group input.form-control,
.cid-qSsRd95osV form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qSsRd95osV .form-inline {
  justify-content: center;
}
.cid-qSsRd95osV .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qSsRd95osV .foot-logo {
    text-align: center !important;
  }
  .cid-qSsRd95osV .foot-title {
    text-align: center !important;
  }
  .cid-qSsRd95osV .mbr-text {
    text-align: center !important;
  }
}
.cid-qSsRddSuf6 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSsRddSuf6 .container-fluid {
  padding: 0 3rem;
}
.cid-qSsRddSuf6 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qSsRddSuf6 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qSsRddSuf6 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qSsRddSuf6 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qSsRddSuf6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qSsRddSuf6 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qSsRddSuf6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qSsRddSuf6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qSsRdhJqSN {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qSsRdhJqSN .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qSsRdhJqSN .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qSsRdhJqSN .btn-social {
  border: none !important;
}
.cid-qSsRdhJqSN [class^="socicon-"]:before,
.cid-qSsRdhJqSN [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qSsRdhJqSN .btn {
    font-size: 20px !important;
  }
}
.cid-qSsRdhJqSN .mbr-section-title {
  color: #ffffff;
}
.cid-qUalvYYS58 .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;
  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-qUalvYYS58 .nav-item:focus,
.cid-qUalvYYS58 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUalvYYS58 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUalvYYS58 .nav-item .nav-link {
    position: relative;
  }
  .cid-qUalvYYS58 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUalvYYS58 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUalvYYS58 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUalvYYS58 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUalvYYS58 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUalvYYS58 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUalvYYS58 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUalvYYS58 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUalvYYS58 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUalvYYS58 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUalvYYS58 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUalvYYS58 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUalvYYS58 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUalvYYS58 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUalvYYS58 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUalvYYS58 .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-qUalvYYS58 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUalvYYS58 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUalvYYS58 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUalvYYS58 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUalvYYS58 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUalvYYS58 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUalvYYS58 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUalvYYS58 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUalvYYS58 .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-qUalvYYS58 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUalvYYS58 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUalvYYS58 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUalvYYS58 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUalvYYS58 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUalvYYS58 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUalvYYS58 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUalvYYS58 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUalvYYS58 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUalvYYS58 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUalvYYS58 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUalvYYS58 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUalvYYS58 .dropdown-item.active,
.cid-qUalvYYS58 .dropdown-item:active {
  background-color: transparent;
}
.cid-qUalvYYS58 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUalvYYS58 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUalvYYS58 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUalvYYS58 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUalvYYS58 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUalvYYS58 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUalvYYS58 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUalvYYS58 .navbar-buttons {
  text-align: center;
}
.cid-qUalvYYS58 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUalvYYS58 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUalvYYS58 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUalvYYS58 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUalvYYS58 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUalvYYS58 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUalvYYS58 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUalvYYS58 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUalvYYS58 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUalvYYS58 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUalvYYS58 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUalvYYS58 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUalvYYS58 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUalvYYS58 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUalvYYS58 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUalvYYS58 .navbar {
    height: 77px;
  }
  .cid-qUalvYYS58 .navbar.opened {
    height: auto;
  }
  .cid-qUalvYYS58 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUalw182mf {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUalw182mf p {
  color: #767676;
}
.cid-qUalw182mf .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUalw182mf .main {
  flex-direction: row-reverse;
}
.cid-qUalw182mf .row-element,
.cid-qUalw182mf .image-element {
  padding: 0;
}
.cid-qUalw182mf .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUalw182mf .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUalw182mf .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUalw182mf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUalw182mf .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUalw182mf .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUalw182mf .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUalw182mf .underline .line {
    height: 2px;
  }
  .cid-qUalw182mf .mbr-title,
  .cid-qUalw182mf .underline,
  .cid-qUalw182mf .mbr-text,
  .cid-qUalw182mf .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUalw182mf .mbr-title,
.cid-qUalw182mf .underline {
  color: #84510e;
}
.cid-qUalw3mrAW {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUalw3mrAW .container-fluid {
  padding: 0 3rem;
}
.cid-qUalw3mrAW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUalw3mrAW .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUalw3mrAW .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUalw3mrAW .card .card-wrapper {
  height: 1%;
}
.cid-qUalw3mrAW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUalw3mrAW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUalw3mrAW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUalw3mrAW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUalw3mrAW .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUalw3mrAW .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUalw3mrAW .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUalw6yhcZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUalw6yhcZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUalw6yhcZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUalw6yhcZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUalw6yhcZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUalw6yhcZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUalw6yhcZ .icon-focus {
  display: none;
}
.cid-qUalw6yhcZ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUalw6yhcZ ul {
  font-size: 0;
}
.cid-qUalw6yhcZ .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #465052 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUalw6yhcZ .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUalw6yhcZ .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUalw6yhcZ .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUalw6yhcZ .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUalw6yhcZ .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-qUalw6yhcZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUalw6yhcZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUalw6yhcZ .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUalw6yhcZ .btn:hover {
  background: transparent !important;
}
.cid-qUalw6yhcZ .btn:hover:before {
  background: transparent !important;
}
.cid-qUalw6yhcZ .btn:before {
  background-color: transparent !important;
}
.cid-qUalw6yhcZ .btn:focus {
  box-shadow: none;
}
.cid-qUalw6yhcZ .mbr-section-title,
.cid-qUalw6yhcZ .underline {
  color: #465052;
}
.cid-rJx7RfGANU {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx7RfGANU .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx7RfGANU .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx7RfGANU .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx7RfGANU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx7RfGANU .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx7RfGANU .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx7RfGANU .card .panel-body {
  color: #767676;
}
.cid-rJx7RfGANU H2 {
  color: #84510e;
}
.cid-rJx7RfGANU H4 {
  color: #5b686b;
}
.cid-qUalwgkrcg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUalwgkrcg .title {
  margin-bottom: 2rem;
}
.cid-qUalwgkrcg .mbr-section-subtitle {
  color: #767676;
}
.cid-qUalwgkrcg a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUalwgkrcg a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUalwgkrcg .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUalwgkrcg .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUalwgkrcg H2 {
  color: #84510e;
}
.cid-qUalwilx3L {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUalwilx3L .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUalwilx3L .social-list a:focus {
  text-decoration: none;
}
.cid-qUalwilx3L H2 {
  color: #ffffff;
}
.cid-qUalwpCpG1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUalwpCpG1 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUalwpCpG1 .content {
    text-align: center;
  }
  .cid-qUalwpCpG1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUalwpCpG1 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUalwpCpG1 .input-group-btn {
  display: inline-block;
}
.cid-qUalwpCpG1 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUalwpCpG1 .img-logo img {
  height: 6rem;
}
.cid-qUalwpCpG1 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUalwpCpG1 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUalwpCpG1 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUalwpCpG1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUalwpCpG1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUalwpCpG1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUalwpCpG1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUalwpCpG1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUalwpCpG1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUalwpCpG1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUalwpCpG1 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUalwpCpG1 form .input-group input.form-control,
.cid-qUalwpCpG1 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUalwpCpG1 .form-inline {
  justify-content: center;
}
.cid-qUalwpCpG1 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUalwpCpG1 .foot-logo {
    text-align: center !important;
  }
  .cid-qUalwpCpG1 .foot-title {
    text-align: center !important;
  }
  .cid-qUalwpCpG1 .mbr-text {
    text-align: center !important;
  }
}
.cid-qUalwvBNoG {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUalwvBNoG .container-fluid {
  padding: 0 3rem;
}
.cid-qUalwvBNoG ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUalwvBNoG ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUalwvBNoG ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUalwvBNoG ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUalwvBNoG .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUalwvBNoG .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUalwvBNoG .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUalwvBNoG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUalwAlyZG {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUalwAlyZG .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUalwAlyZG .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUalwAlyZG .btn-social {
  border: none !important;
}
.cid-qUalwAlyZG [class^="socicon-"]:before,
.cid-qUalwAlyZG [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUalwAlyZG .btn {
    font-size: 20px !important;
  }
}
.cid-qUalwAlyZG .mbr-section-title {
  color: #ffffff;
}
.cid-qToUJe41kN .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;
  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-qToUJe41kN .nav-item:focus,
.cid-qToUJe41kN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qToUJe41kN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qToUJe41kN .nav-item .nav-link {
    position: relative;
  }
  .cid-qToUJe41kN .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qToUJe41kN .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qToUJe41kN .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qToUJe41kN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qToUJe41kN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qToUJe41kN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qToUJe41kN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qToUJe41kN .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qToUJe41kN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qToUJe41kN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qToUJe41kN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qToUJe41kN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qToUJe41kN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qToUJe41kN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qToUJe41kN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qToUJe41kN .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-qToUJe41kN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qToUJe41kN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qToUJe41kN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qToUJe41kN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qToUJe41kN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qToUJe41kN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qToUJe41kN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qToUJe41kN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qToUJe41kN .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-qToUJe41kN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qToUJe41kN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qToUJe41kN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qToUJe41kN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qToUJe41kN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qToUJe41kN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qToUJe41kN .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qToUJe41kN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qToUJe41kN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qToUJe41kN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qToUJe41kN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qToUJe41kN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qToUJe41kN .dropdown-item.active,
.cid-qToUJe41kN .dropdown-item:active {
  background-color: transparent;
}
.cid-qToUJe41kN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qToUJe41kN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qToUJe41kN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qToUJe41kN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qToUJe41kN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qToUJe41kN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qToUJe41kN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qToUJe41kN .navbar-buttons {
  text-align: center;
}
.cid-qToUJe41kN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qToUJe41kN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qToUJe41kN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qToUJe41kN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qToUJe41kN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qToUJe41kN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qToUJe41kN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qToUJe41kN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qToUJe41kN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qToUJe41kN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qToUJe41kN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qToUJe41kN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qToUJe41kN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qToUJe41kN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qToUJe41kN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qToUJe41kN .navbar {
    height: 77px;
  }
  .cid-qToUJe41kN .navbar.opened {
    height: auto;
  }
  .cid-qToUJe41kN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qToVyHAg02 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qToVyHAg02 p {
  color: #767676;
}
.cid-qToVyHAg02 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qToVyHAg02 .main {
  flex-direction: row-reverse;
}
.cid-qToVyHAg02 .row-element,
.cid-qToVyHAg02 .image-element {
  padding: 0;
}
.cid-qToVyHAg02 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qToVyHAg02 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qToVyHAg02 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qToVyHAg02 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qToVyHAg02 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qToVyHAg02 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qToVyHAg02 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qToVyHAg02 .underline .line {
    height: 2px;
  }
  .cid-qToVyHAg02 .mbr-title,
  .cid-qToVyHAg02 .underline,
  .cid-qToVyHAg02 .mbr-text,
  .cid-qToVyHAg02 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qToVyHAg02 .mbr-title,
.cid-qToVyHAg02 .underline {
  color: #84510e;
}
.cid-qToY4NBnWC {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qToY4NBnWC .container-fluid {
  padding: 0 3rem;
}
.cid-qToY4NBnWC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qToY4NBnWC .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qToY4NBnWC .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qToY4NBnWC .card .card-wrapper {
  height: 1%;
}
.cid-qToY4NBnWC .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qToY4NBnWC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qToY4NBnWC .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qToY4NBnWC .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qToY4NBnWC .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qToY4NBnWC .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qToY4NBnWC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUaGpQRrV5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUaGpQRrV5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUaGpQRrV5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUaGpQRrV5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUaGpQRrV5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUaGpQRrV5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUaGpQRrV5 .icon-focus {
  display: none;
}
.cid-qUaGpQRrV5 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUaGpQRrV5 ul {
  font-size: 0;
}
.cid-qUaGpQRrV5 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #465052 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUaGpQRrV5 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUaGpQRrV5 .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUaGpQRrV5 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUaGpQRrV5 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUaGpQRrV5 .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qUaGpQRrV5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUaGpQRrV5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUaGpQRrV5 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUaGpQRrV5 .btn:hover {
  background: transparent !important;
}
.cid-qUaGpQRrV5 .btn:hover:before {
  background: transparent !important;
}
.cid-qUaGpQRrV5 .btn:before {
  background-color: transparent !important;
}
.cid-qUaGpQRrV5 .btn:focus {
  box-shadow: none;
}
.cid-qUaGpQRrV5 .mbr-section-title,
.cid-qUaGpQRrV5 .underline DIV {
  color: #5b686b;
}
.cid-qUaGpQRrV5 .mbr-gallery-item > div > span {
  color: #000000;
}
.cid-qToUJy0eI0 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-qToUJy0eI0 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-qToUJy0eI0 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-qToUJy0eI0 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-qToUJy0eI0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qToUJy0eI0 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-qToUJy0eI0 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-qToUJy0eI0 .card .panel-body {
  color: #767676;
}
.cid-qToUJy0eI0 H2 {
  color: #84510e;
}
.cid-qToUJy0eI0 H4 {
  color: #5b686b;
}
.cid-qToUJCbvXo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qToUJCbvXo .title {
  margin-bottom: 2rem;
}
.cid-qToUJCbvXo .mbr-section-subtitle {
  color: #767676;
}
.cid-qToUJCbvXo a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qToUJCbvXo a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qToUJCbvXo .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qToUJCbvXo .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qToUJCbvXo H2 {
  color: #84510e;
}
.cid-qToUJFMRKy {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qToUJFMRKy .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qToUJFMRKy .social-list a:focus {
  text-decoration: none;
}
.cid-qToUJFMRKy H2 {
  color: #ffffff;
}
.cid-qToUJMxWbO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qToUJMxWbO .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qToUJMxWbO .content {
    text-align: center;
  }
  .cid-qToUJMxWbO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qToUJMxWbO .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qToUJMxWbO .input-group-btn {
  display: inline-block;
}
.cid-qToUJMxWbO .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qToUJMxWbO .img-logo img {
  height: 6rem;
}
.cid-qToUJMxWbO [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qToUJMxWbO [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qToUJMxWbO .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qToUJMxWbO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qToUJMxWbO .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qToUJMxWbO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qToUJMxWbO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qToUJMxWbO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qToUJMxWbO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qToUJMxWbO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qToUJMxWbO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qToUJMxWbO form .input-group input.form-control,
.cid-qToUJMxWbO form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qToUJMxWbO .form-inline {
  justify-content: center;
}
.cid-qToUJMxWbO .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qToUJMxWbO .foot-logo {
    text-align: center !important;
  }
  .cid-qToUJMxWbO .foot-title {
    text-align: center !important;
  }
  .cid-qToUJMxWbO .mbr-text {
    text-align: center !important;
  }
}
.cid-qToUJSE4h0 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qToUJSE4h0 .container-fluid {
  padding: 0 3rem;
}
.cid-qToUJSE4h0 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qToUJSE4h0 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qToUJSE4h0 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qToUJSE4h0 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qToUJSE4h0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qToUJSE4h0 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qToUJSE4h0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qToUJSE4h0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qToUJXnQnz {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qToUJXnQnz .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qToUJXnQnz .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qToUJXnQnz .btn-social {
  border: none !important;
}
.cid-qToUJXnQnz [class^="socicon-"]:before,
.cid-qToUJXnQnz [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qToUJXnQnz .btn {
    font-size: 20px !important;
  }
}
.cid-qToUJXnQnz .mbr-section-title {
  color: #ffffff;
}
.cid-qUfzIWZqC2 .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;
  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-qUfzIWZqC2 .nav-item:focus,
.cid-qUfzIWZqC2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUfzIWZqC2 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUfzIWZqC2 .nav-item .nav-link {
    position: relative;
  }
  .cid-qUfzIWZqC2 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUfzIWZqC2 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUfzIWZqC2 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUfzIWZqC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUfzIWZqC2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUfzIWZqC2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUfzIWZqC2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUfzIWZqC2 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUfzIWZqC2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUfzIWZqC2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUfzIWZqC2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUfzIWZqC2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUfzIWZqC2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUfzIWZqC2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUfzIWZqC2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUfzIWZqC2 .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-qUfzIWZqC2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUfzIWZqC2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUfzIWZqC2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUfzIWZqC2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUfzIWZqC2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUfzIWZqC2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUfzIWZqC2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUfzIWZqC2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUfzIWZqC2 .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-qUfzIWZqC2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUfzIWZqC2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUfzIWZqC2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUfzIWZqC2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUfzIWZqC2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUfzIWZqC2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUfzIWZqC2 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUfzIWZqC2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUfzIWZqC2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUfzIWZqC2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUfzIWZqC2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUfzIWZqC2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUfzIWZqC2 .dropdown-item.active,
.cid-qUfzIWZqC2 .dropdown-item:active {
  background-color: transparent;
}
.cid-qUfzIWZqC2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUfzIWZqC2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUfzIWZqC2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUfzIWZqC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUfzIWZqC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUfzIWZqC2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUfzIWZqC2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUfzIWZqC2 .navbar-buttons {
  text-align: center;
}
.cid-qUfzIWZqC2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUfzIWZqC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUfzIWZqC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUfzIWZqC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUfzIWZqC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUfzIWZqC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUfzIWZqC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUfzIWZqC2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUfzIWZqC2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUfzIWZqC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUfzIWZqC2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUfzIWZqC2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUfzIWZqC2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUfzIWZqC2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUfzIWZqC2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUfzIWZqC2 .navbar {
    height: 77px;
  }
  .cid-qUfzIWZqC2 .navbar.opened {
    height: auto;
  }
  .cid-qUfzIWZqC2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUfzIZXNgw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUfzIZXNgw p {
  color: #767676;
}
.cid-qUfzIZXNgw .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUfzIZXNgw .main {
  flex-direction: row-reverse;
}
.cid-qUfzIZXNgw .row-element,
.cid-qUfzIZXNgw .image-element {
  padding: 0;
}
.cid-qUfzIZXNgw .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUfzIZXNgw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUfzIZXNgw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUfzIZXNgw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUfzIZXNgw .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUfzIZXNgw .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUfzIZXNgw .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUfzIZXNgw .underline .line {
    height: 2px;
  }
  .cid-qUfzIZXNgw .mbr-title,
  .cid-qUfzIZXNgw .underline,
  .cid-qUfzIZXNgw .mbr-text,
  .cid-qUfzIZXNgw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUfzIZXNgw .mbr-title,
.cid-qUfzIZXNgw .underline {
  color: #84510e;
}
.cid-qUfzJ2Y0jb {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUfzJ2Y0jb .container-fluid {
  padding: 0 3rem;
}
.cid-qUfzJ2Y0jb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUfzJ2Y0jb .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUfzJ2Y0jb .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUfzJ2Y0jb .card .card-wrapper {
  height: 1%;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUfzJ2Y0jb .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUfzJ2Y0jb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUfA9tI70Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUfA9tI70Y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUfA9tI70Y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUfA9tI70Y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUfA9tI70Y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUfA9tI70Y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUfA9tI70Y .icon-focus {
  display: none;
}
.cid-qUfA9tI70Y .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUfA9tI70Y ul {
  font-size: 0;
}
.cid-qUfA9tI70Y .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #465052 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUfA9tI70Y .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUfA9tI70Y .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUfA9tI70Y .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUfA9tI70Y .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUfA9tI70Y .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qUfA9tI70Y .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUfA9tI70Y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUfA9tI70Y .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUfA9tI70Y .btn:hover {
  background: transparent !important;
}
.cid-qUfA9tI70Y .btn:hover:before {
  background: transparent !important;
}
.cid-qUfA9tI70Y .btn:before {
  background-color: transparent !important;
}
.cid-qUfA9tI70Y .btn:focus {
  box-shadow: none;
}
.cid-qUfA9tI70Y .mbr-section-title,
.cid-qUfA9tI70Y .underline {
  color: #465052;
}
.cid-rJx7KzvYZx {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx7KzvYZx .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx7KzvYZx .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx7KzvYZx .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx7KzvYZx .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx7KzvYZx .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx7KzvYZx .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx7KzvYZx .card .panel-body {
  color: #767676;
}
.cid-rJx7KzvYZx H2 {
  color: #84510e;
}
.cid-rJx7KzvYZx H4 {
  color: #5b686b;
}
.cid-qUfzJgGVV6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUfzJgGVV6 .title {
  margin-bottom: 2rem;
}
.cid-qUfzJgGVV6 .mbr-section-subtitle {
  color: #767676;
}
.cid-qUfzJgGVV6 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUfzJgGVV6 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUfzJgGVV6 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUfzJgGVV6 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUfzJgGVV6 H2 {
  color: #84510e;
}
.cid-qUfzJjilcr {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUfzJjilcr .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUfzJjilcr .social-list a:focus {
  text-decoration: none;
}
.cid-qUfzJjilcr H2 {
  color: #ffffff;
}
.cid-qUfzJnL5K5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUfzJnL5K5 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUfzJnL5K5 .content {
    text-align: center;
  }
  .cid-qUfzJnL5K5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUfzJnL5K5 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUfzJnL5K5 .input-group-btn {
  display: inline-block;
}
.cid-qUfzJnL5K5 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUfzJnL5K5 .img-logo img {
  height: 6rem;
}
.cid-qUfzJnL5K5 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUfzJnL5K5 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUfzJnL5K5 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUfzJnL5K5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUfzJnL5K5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUfzJnL5K5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUfzJnL5K5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUfzJnL5K5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUfzJnL5K5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUfzJnL5K5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUfzJnL5K5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUfzJnL5K5 form .input-group input.form-control,
.cid-qUfzJnL5K5 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUfzJnL5K5 .form-inline {
  justify-content: center;
}
.cid-qUfzJnL5K5 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUfzJnL5K5 .foot-logo {
    text-align: center !important;
  }
  .cid-qUfzJnL5K5 .foot-title {
    text-align: center !important;
  }
  .cid-qUfzJnL5K5 .mbr-text {
    text-align: center !important;
  }
}
.cid-qUfzJs1JwC {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUfzJs1JwC .container-fluid {
  padding: 0 3rem;
}
.cid-qUfzJs1JwC ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUfzJs1JwC ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUfzJs1JwC ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUfzJs1JwC ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUfzJs1JwC .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUfzJs1JwC .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUfzJs1JwC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUfzJs1JwC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUfzJv2PFl {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUfzJv2PFl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUfzJv2PFl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUfzJv2PFl .btn-social {
  border: none !important;
}
.cid-qUfzJv2PFl [class^="socicon-"]:before,
.cid-qUfzJv2PFl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUfzJv2PFl .btn {
    font-size: 20px !important;
  }
}
.cid-qUfzJv2PFl .mbr-section-title {
  color: #ffffff;
}
.cid-qUHttg50kD .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;
  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-qUHttg50kD .nav-item:focus,
.cid-qUHttg50kD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUHttg50kD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUHttg50kD .nav-item .nav-link {
    position: relative;
  }
  .cid-qUHttg50kD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUHttg50kD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUHttg50kD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUHttg50kD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUHttg50kD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUHttg50kD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUHttg50kD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUHttg50kD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUHttg50kD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUHttg50kD .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-qUHttg50kD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUHttg50kD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUHttg50kD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUHttg50kD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUHttg50kD .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-qUHttg50kD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUHttg50kD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUHttg50kD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUHttg50kD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUHttg50kD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUHttg50kD .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUHttg50kD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUHttg50kD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUHttg50kD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUHttg50kD .dropdown-item.active,
.cid-qUHttg50kD .dropdown-item:active {
  background-color: transparent;
}
.cid-qUHttg50kD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUHttg50kD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUHttg50kD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUHttg50kD .navbar-buttons {
  text-align: center;
}
.cid-qUHttg50kD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUHttg50kD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUHttg50kD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUHttg50kD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUHttg50kD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUHttg50kD .navbar {
    height: 77px;
  }
  .cid-qUHttg50kD .navbar.opened {
    height: auto;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHtthBSn9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUHtthBSn9 p {
  color: #767676;
}
.cid-qUHtthBSn9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUHtthBSn9 .main {
  flex-direction: row-reverse;
}
.cid-qUHtthBSn9 .row-element,
.cid-qUHtthBSn9 .image-element {
  padding: 0;
}
.cid-qUHtthBSn9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUHtthBSn9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUHtthBSn9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtthBSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUHtthBSn9 .underline .line {
    height: 2px;
  }
  .cid-qUHtthBSn9 .mbr-title,
  .cid-qUHtthBSn9 .underline,
  .cid-qUHtthBSn9 .mbr-text,
  .cid-qUHtthBSn9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUHtthBSn9 .mbr-title,
.cid-qUHtthBSn9 .underline {
  color: #84510e;
}
.cid-qUHttiHxyO {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttiHxyO .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttiHxyO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHttiHxyO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUHttiHxyO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper {
  height: 1%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUHttiHxyO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUHtVss49S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHtVss49S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUHtVss49S .icon-focus {
  display: none;
}
.cid-qUHtVss49S .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUHtVss49S ul {
  font-size: 0;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUHtVss49S .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qUHtVss49S .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtVss49S .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtVss49S .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .btn:hover {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:hover:before {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:before {
  background-color: transparent !important;
}
.cid-qUHtVss49S .btn:focus {
  box-shadow: none;
}
.cid-rJx7ZtRbsl {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx7ZtRbsl .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx7ZtRbsl .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx7ZtRbsl .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx7ZtRbsl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx7ZtRbsl .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx7ZtRbsl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx7ZtRbsl .card .panel-body {
  color: #767676;
}
.cid-rJx7ZtRbsl H2 {
  color: #84510e;
}
.cid-rJx7ZtRbsl H4 {
  color: #5b686b;
}
.cid-qUHttnCAub {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttnCAub .title {
  margin-bottom: 2rem;
}
.cid-qUHttnCAub .mbr-section-subtitle {
  color: #767676;
}
.cid-qUHttnCAub a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUHttnCAub a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUHttnCAub .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUHttnCAub .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUHttnCAub H2 {
  color: #84510e;
}
.cid-qUHttp05Cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUHttp05Cw .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUHttp05Cw .social-list a:focus {
  text-decoration: none;
}
.cid-qUHttp05Cw H2 {
  color: #ffffff;
}
.cid-qUHttqSjed {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUHttqSjed .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .content {
    text-align: center;
  }
  .cid-qUHttqSjed .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUHttqSjed .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUHttqSjed .input-group-btn {
  display: inline-block;
}
.cid-qUHttqSjed .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUHttqSjed .img-logo img {
  height: 6rem;
}
.cid-qUHttqSjed [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUHttqSjed [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUHttqSjed .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUHttqSjed .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUHttqSjed .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUHttqSjed .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUHttqSjed .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUHttqSjed .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUHttqSjed .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUHttqSjed form .input-group input.form-control,
.cid-qUHttqSjed form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUHttqSjed .form-inline {
  justify-content: center;
}
.cid-qUHttqSjed .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .foot-logo {
    text-align: center !important;
  }
  .cid-qUHttqSjed .foot-title {
    text-align: center !important;
  }
  .cid-qUHttqSjed .mbr-text {
    text-align: center !important;
  }
}
.cid-qUHttsqPao {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttsqPao .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttsqPao ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUHttsqPao ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUHttsqPao ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUHttsqPao .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUHttsqPao .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUHttsqPao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtttSH8s {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUHtttSH8s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUHtttSH8s .btn-social {
  border: none !important;
}
.cid-qUHtttSH8s [class^="socicon-"]:before,
.cid-qUHtttSH8s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUHtttSH8s .btn {
    font-size: 20px !important;
  }
}
.cid-qUHtttSH8s .mbr-section-title {
  color: #ffffff;
}
.cid-qUIc4cd5KK .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;
  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-qUIc4cd5KK .nav-item:focus,
.cid-qUIc4cd5KK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUIc4cd5KK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUIc4cd5KK .nav-item .nav-link {
    position: relative;
  }
  .cid-qUIc4cd5KK .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUIc4cd5KK .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUIc4cd5KK .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUIc4cd5KK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUIc4cd5KK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUIc4cd5KK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUIc4cd5KK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUIc4cd5KK .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUIc4cd5KK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUIc4cd5KK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUIc4cd5KK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUIc4cd5KK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUIc4cd5KK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUIc4cd5KK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUIc4cd5KK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUIc4cd5KK .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-qUIc4cd5KK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUIc4cd5KK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUIc4cd5KK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUIc4cd5KK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUIc4cd5KK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUIc4cd5KK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUIc4cd5KK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUIc4cd5KK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUIc4cd5KK .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-qUIc4cd5KK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUIc4cd5KK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUIc4cd5KK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUIc4cd5KK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUIc4cd5KK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUIc4cd5KK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUIc4cd5KK .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUIc4cd5KK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUIc4cd5KK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUIc4cd5KK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUIc4cd5KK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUIc4cd5KK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUIc4cd5KK .dropdown-item.active,
.cid-qUIc4cd5KK .dropdown-item:active {
  background-color: transparent;
}
.cid-qUIc4cd5KK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUIc4cd5KK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUIc4cd5KK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUIc4cd5KK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUIc4cd5KK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUIc4cd5KK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUIc4cd5KK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUIc4cd5KK .navbar-buttons {
  text-align: center;
}
.cid-qUIc4cd5KK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUIc4cd5KK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUIc4cd5KK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUIc4cd5KK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUIc4cd5KK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUIc4cd5KK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUIc4cd5KK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUIc4cd5KK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUIc4cd5KK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUIc4cd5KK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUIc4cd5KK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUIc4cd5KK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUIc4cd5KK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUIc4cd5KK .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUIc4cd5KK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUIc4cd5KK .navbar {
    height: 77px;
  }
  .cid-qUIc4cd5KK .navbar.opened {
    height: auto;
  }
  .cid-qUIc4cd5KK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUIc4en2HF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUIc4en2HF p {
  color: #767676;
}
.cid-qUIc4en2HF .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUIc4en2HF .main {
  flex-direction: row-reverse;
}
.cid-qUIc4en2HF .row-element,
.cid-qUIc4en2HF .image-element {
  padding: 0;
}
.cid-qUIc4en2HF .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUIc4en2HF .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUIc4en2HF .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUIc4en2HF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUIc4en2HF .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUIc4en2HF .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUIc4en2HF .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUIc4en2HF .underline .line {
    height: 2px;
  }
  .cid-qUIc4en2HF .mbr-title,
  .cid-qUIc4en2HF .underline,
  .cid-qUIc4en2HF .mbr-text,
  .cid-qUIc4en2HF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUIc4en2HF .mbr-title,
.cid-qUIc4en2HF .underline {
  color: #84510e;
}
.cid-qUIc4fQb6a {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUIc4fQb6a .container-fluid {
  padding: 0 3rem;
}
.cid-qUIc4fQb6a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUIc4fQb6a .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUIc4fQb6a .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUIc4fQb6a .card .card-wrapper {
  height: 1%;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUIc4fQb6a .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUIc4fQb6a .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUInlg4zsu {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUInlg4zsu .container-fluid {
  padding: 0 3rem;
}
.cid-qUInlg4zsu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUInlg4zsu .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUInlg4zsu .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUInlg4zsu .card .card-wrapper {
  height: 1%;
}
.cid-qUInlg4zsu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUInlg4zsu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUInlg4zsu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUInlg4zsu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUInlg4zsu .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUInlg4zsu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUIcUX3ZSz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUIcUX3ZSz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUIcUX3ZSz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUIcUX3ZSz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUIcUX3ZSz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUIcUX3ZSz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUIcUX3ZSz .icon-focus {
  display: none;
}
.cid-qUIcUX3ZSz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUIcUX3ZSz ul {
  font-size: 0;
}
.cid-qUIcUX3ZSz .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUIcUX3ZSz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUIcUX3ZSz .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUIcUX3ZSz .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUIcUX3ZSz .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUIcUX3ZSz .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qUIcUX3ZSz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUIcUX3ZSz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUIcUX3ZSz .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUIcUX3ZSz .btn:hover {
  background: transparent !important;
}
.cid-qUIcUX3ZSz .btn:hover:before {
  background: transparent !important;
}
.cid-qUIcUX3ZSz .btn:before {
  background-color: transparent !important;
}
.cid-qUIcUX3ZSz .btn:focus {
  box-shadow: none;
}
.cid-qUIcUX3ZSz .mbr-gallery-item > div > span {
  color: #465052;
}
.cid-rJx93NUDLa {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx93NUDLa .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx93NUDLa .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx93NUDLa .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx93NUDLa .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx93NUDLa .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx93NUDLa .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx93NUDLa .card .panel-body {
  color: #767676;
}
.cid-rJx93NUDLa H2 {
  color: #84510e;
}
.cid-rJx93NUDLa H4 {
  color: #5b686b;
}
.cid-qUIc4kKXT9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUIc4kKXT9 .title {
  margin-bottom: 2rem;
}
.cid-qUIc4kKXT9 .mbr-section-subtitle {
  color: #767676;
}
.cid-qUIc4kKXT9 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUIc4kKXT9 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUIc4kKXT9 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUIc4kKXT9 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUIc4kKXT9 H2 {
  color: #84510e;
}
.cid-qUIc4lURCT {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUIc4lURCT .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUIc4lURCT .social-list a:focus {
  text-decoration: none;
}
.cid-qUIc4lURCT H2 {
  color: #ffffff;
}
.cid-qUIc4osf3A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUIc4osf3A .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUIc4osf3A .content {
    text-align: center;
  }
  .cid-qUIc4osf3A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUIc4osf3A .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUIc4osf3A .input-group-btn {
  display: inline-block;
}
.cid-qUIc4osf3A .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUIc4osf3A .img-logo img {
  height: 6rem;
}
.cid-qUIc4osf3A [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUIc4osf3A [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUIc4osf3A .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUIc4osf3A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUIc4osf3A .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUIc4osf3A .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUIc4osf3A .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUIc4osf3A .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUIc4osf3A .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUIc4osf3A .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUIc4osf3A .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUIc4osf3A form .input-group input.form-control,
.cid-qUIc4osf3A form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUIc4osf3A .form-inline {
  justify-content: center;
}
.cid-qUIc4osf3A .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUIc4osf3A .foot-logo {
    text-align: center !important;
  }
  .cid-qUIc4osf3A .foot-title {
    text-align: center !important;
  }
  .cid-qUIc4osf3A .mbr-text {
    text-align: center !important;
  }
}
.cid-qUIc4qqptS {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUIc4qqptS .container-fluid {
  padding: 0 3rem;
}
.cid-qUIc4qqptS ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUIc4qqptS ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUIc4qqptS ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUIc4qqptS ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUIc4qqptS .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUIc4qqptS .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUIc4qqptS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUIc4qqptS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUIc4smQP8 {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUIc4smQP8 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUIc4smQP8 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUIc4smQP8 .btn-social {
  border: none !important;
}
.cid-qUIc4smQP8 [class^="socicon-"]:before,
.cid-qUIc4smQP8 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUIc4smQP8 .btn {
    font-size: 20px !important;
  }
}
.cid-qUIc4smQP8 .mbr-section-title {
  color: #ffffff;
}
.cid-qV66tq2JJc .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;
  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-qV66tq2JJc .nav-item:focus,
.cid-qV66tq2JJc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qV66tq2JJc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qV66tq2JJc .nav-item .nav-link {
    position: relative;
  }
  .cid-qV66tq2JJc .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qV66tq2JJc .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qV66tq2JJc .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qV66tq2JJc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qV66tq2JJc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qV66tq2JJc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qV66tq2JJc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qV66tq2JJc .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qV66tq2JJc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qV66tq2JJc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qV66tq2JJc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qV66tq2JJc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qV66tq2JJc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qV66tq2JJc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qV66tq2JJc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qV66tq2JJc .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-qV66tq2JJc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qV66tq2JJc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qV66tq2JJc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qV66tq2JJc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qV66tq2JJc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qV66tq2JJc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qV66tq2JJc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qV66tq2JJc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qV66tq2JJc .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-qV66tq2JJc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qV66tq2JJc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qV66tq2JJc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qV66tq2JJc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qV66tq2JJc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qV66tq2JJc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qV66tq2JJc .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qV66tq2JJc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qV66tq2JJc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qV66tq2JJc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qV66tq2JJc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qV66tq2JJc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qV66tq2JJc .dropdown-item.active,
.cid-qV66tq2JJc .dropdown-item:active {
  background-color: transparent;
}
.cid-qV66tq2JJc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qV66tq2JJc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qV66tq2JJc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qV66tq2JJc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qV66tq2JJc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qV66tq2JJc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qV66tq2JJc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qV66tq2JJc .navbar-buttons {
  text-align: center;
}
.cid-qV66tq2JJc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qV66tq2JJc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qV66tq2JJc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qV66tq2JJc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qV66tq2JJc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qV66tq2JJc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qV66tq2JJc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qV66tq2JJc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qV66tq2JJc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qV66tq2JJc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qV66tq2JJc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qV66tq2JJc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qV66tq2JJc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qV66tq2JJc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qV66tq2JJc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qV66tq2JJc .navbar {
    height: 77px;
  }
  .cid-qV66tq2JJc .navbar.opened {
    height: auto;
  }
  .cid-qV66tq2JJc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qV66trH8yu {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qV66trH8yu H1 {
  color: #986ee7;
}
.cid-qV66trH8yu H3 {
  color: #767676;
}
.cid-qV66trH8yu P {
  color: #767676;
}
.cid-qV66trH8yu SPAN {
  color: #84510e;
}
.cid-qV66ttNQ3j {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-qV66ttNQ3j .mbr-shop {
  display: table;
  width: 100%;
}
.cid-qV66ttNQ3j .mbr-shop .row {
  margin: 0;
}
.cid-qV66ttNQ3j .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-qV66ttNQ3j .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-qV66ttNQ3j .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-qV66ttNQ3j .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-qV66ttNQ3j .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-qV66ttNQ3j .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-qV66ttNQ3j .mbr-shop .hide-modal {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qV66ttNQ3j .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-qV66ttNQ3j .mbr-shop .filter-by-pu,
.cid-qV66ttNQ3j .mbr-shop .filter-by-pd,
.cid-qV66ttNQ3j .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-qV66ttNQ3j .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-qV66ttNQ3j .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem h4,
.cid-qV66ttNQ3j .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem h5,
.cid-qV66ttNQ3j .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-qV66ttNQ3j .mbr-shop .galleryItem p,
.cid-qV66ttNQ3j .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-qV66ttNQ3j .mbr-shop .item-button {
  text-align: center;
}
.cid-qV66ttNQ3j .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-qV66ttNQ3j .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-qV66ttNQ3j .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-qV66ttNQ3j .mbr-shop .sidebar-block {
  position: relative;
}
.cid-qV66ttNQ3j .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-qV66ttNQ3j .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item__hided h4,
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item__hided h5,
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-qV66ttNQ3j .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-qV66ttNQ3j .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-qV66ttNQ3j .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-qV66ttNQ3j .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-qV66ttNQ3j .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-qV66ttNQ3j .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-qV66ttNQ3j .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-qV66ttNQ3j .mbr-shop .range-controls {
  position: relative;
}
.cid-qV66ttNQ3j .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-qV66ttNQ3j .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-qV66ttNQ3j .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-qV66ttNQ3j .mbr-shop .toggle:hover,
.cid-qV66ttNQ3j .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-qV66ttNQ3j .mbr-shop .min-toggle {
  left: 0;
}
.cid-qV66ttNQ3j .mbr-shop .max-toggle {
  right: 0;
}
.cid-qV66ttNQ3j .mbr-shop .hided-by-price {
  display: none;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-qV66ttNQ3j .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-qV66ttNQ3j .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-qV66ttNQ3j .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-qV66ttNQ3j .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qV66ttNQ3j .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qV66ttNQ3j .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qV66ttNQ3j .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qV66ttNQ3j .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-qV66ttNQ3j .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-qV66ttNQ3j .mbr-shop .shop-items .onsale,
.cid-qV66ttNQ3j .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-qV66ttNQ3j .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-qV66ttNQ3j .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-qV66ttNQ3j .mbr-shop .price-range {
  display: inline-block;
}
.cid-qV66ttNQ3j .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-qV66ttNQ3j .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-qV66ttNQ3j .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-qV66ttNQ3j .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-qV66ttNQ3j .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-qV66ttNQ3j .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-qV66ttNQ3j .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-qV66ttNQ3j .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-qV66ttNQ3j .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-qV66ttNQ3j .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-qV66ttNQ3j .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-qV66ttNQ3j .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-qV66ttNQ3j .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-qV66ttNQ3j .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-qV66ttNQ3j .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-qV66ttNQ3j .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-qV66ttNQ3j .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-qV66ttNQ3j .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-qV66ttNQ3j .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-qV66ttNQ3j .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-qV66ttNQ3j .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-qV66ttNQ3j .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-qV66ttNQ3j .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-qV66ttNQ3j .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-qV66ttNQ3j .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-qV66ttNQ3j .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qV66ttNQ3j .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-qV66ttNQ3j .range-controls {
    display: block !important;
  }
}
.cid-qV66ttNQ3j .onsale {
  color: #ffffff;
}
.cid-qV6tiBuLz0 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qV6tiBuLz0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qV6tiBuLz0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qV6tiBuLz0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qV6tiBuLz0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qV6tiBuLz0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qV6tiBuLz0 .icon-focus {
  display: none;
}
.cid-qV6tiBuLz0 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qV6tiBuLz0 ul {
  font-size: 0;
}
.cid-qV6tiBuLz0 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qV6tiBuLz0 .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qV6tiBuLz0 .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qV6tiBuLz0 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qV6tiBuLz0 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qV6tiBuLz0 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-qV6tiBuLz0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qV6tiBuLz0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qV6tiBuLz0 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qV6tiBuLz0 .btn:hover {
  background: transparent !important;
}
.cid-qV6tiBuLz0 .btn:hover:before {
  background: transparent !important;
}
.cid-qV6tiBuLz0 .btn:before {
  background-color: transparent !important;
}
.cid-qV6tiBuLz0 .btn:focus {
  box-shadow: none;
}
.cid-qV6tiBuLz0 .mbr-section-title,
.cid-qV6tiBuLz0 .underline {
  color: #5b686b;
}
.cid-qV6tiBuLz0 .mbr-gallery-item > div > span {
  color: #465052;
}
.cid-rJx7sCqDC7 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx7sCqDC7 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx7sCqDC7 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx7sCqDC7 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx7sCqDC7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx7sCqDC7 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx7sCqDC7 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx7sCqDC7 .card .panel-body {
  color: #767676;
}
.cid-rJx7sCqDC7 H2 {
  color: #84510e;
}
.cid-rJx7sCqDC7 H4 {
  color: #5b686b;
}
.cid-qV66tS0rrK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qV66tS0rrK .title {
  margin-bottom: 2rem;
}
.cid-qV66tS0rrK .mbr-section-subtitle {
  color: #767676;
}
.cid-qV66tS0rrK a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qV66tS0rrK a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qV66tS0rrK .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qV66tS0rrK .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qV66tS0rrK H2 {
  color: #84510e;
}
.cid-qV66tVeyf1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qV66tVeyf1 .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qV66tVeyf1 .social-list a:focus {
  text-decoration: none;
}
.cid-qV66tVeyf1 H2 {
  color: #ffffff;
}
.cid-qV66u2iTGi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qV66u2iTGi .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qV66u2iTGi .content {
    text-align: center;
  }
  .cid-qV66u2iTGi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qV66u2iTGi .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qV66u2iTGi .input-group-btn {
  display: inline-block;
}
.cid-qV66u2iTGi .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qV66u2iTGi .img-logo img {
  height: 6rem;
}
.cid-qV66u2iTGi [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qV66u2iTGi [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qV66u2iTGi .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qV66u2iTGi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qV66u2iTGi .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qV66u2iTGi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qV66u2iTGi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qV66u2iTGi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qV66u2iTGi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qV66u2iTGi .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qV66u2iTGi .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qV66u2iTGi form .input-group input.form-control,
.cid-qV66u2iTGi form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qV66u2iTGi .form-inline {
  justify-content: center;
}
.cid-qV66u2iTGi .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qV66u2iTGi .foot-logo {
    text-align: center !important;
  }
  .cid-qV66u2iTGi .foot-title {
    text-align: center !important;
  }
  .cid-qV66u2iTGi .mbr-text {
    text-align: center !important;
  }
}
.cid-qV66u6ZZW7 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qV66u6ZZW7 .container-fluid {
  padding: 0 3rem;
}
.cid-qV66u6ZZW7 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qV66u6ZZW7 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qV66u6ZZW7 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qV66u6ZZW7 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qV66u6ZZW7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qV66u6ZZW7 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qV66u6ZZW7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qV66u6ZZW7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qV66u9PFV4 {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qV66u9PFV4 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qV66u9PFV4 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qV66u9PFV4 .btn-social {
  border: none !important;
}
.cid-qV66u9PFV4 [class^="socicon-"]:before,
.cid-qV66u9PFV4 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qV66u9PFV4 .btn {
    font-size: 20px !important;
  }
}
.cid-qV66u9PFV4 .mbr-section-title {
  color: #ffffff;
}
.cid-qZIwSamEjJ .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;
  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-qZIwSamEjJ .nav-item:focus,
.cid-qZIwSamEjJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qZIwSamEjJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qZIwSamEjJ .nav-item .nav-link {
    position: relative;
  }
  .cid-qZIwSamEjJ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qZIwSamEjJ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qZIwSamEjJ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qZIwSamEjJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qZIwSamEjJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qZIwSamEjJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qZIwSamEjJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qZIwSamEjJ .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qZIwSamEjJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qZIwSamEjJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qZIwSamEjJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qZIwSamEjJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qZIwSamEjJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qZIwSamEjJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qZIwSamEjJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qZIwSamEjJ .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-qZIwSamEjJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qZIwSamEjJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qZIwSamEjJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qZIwSamEjJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qZIwSamEjJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qZIwSamEjJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qZIwSamEjJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qZIwSamEjJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qZIwSamEjJ .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-qZIwSamEjJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qZIwSamEjJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qZIwSamEjJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qZIwSamEjJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qZIwSamEjJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qZIwSamEjJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qZIwSamEjJ .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qZIwSamEjJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qZIwSamEjJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qZIwSamEjJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qZIwSamEjJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qZIwSamEjJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qZIwSamEjJ .dropdown-item.active,
.cid-qZIwSamEjJ .dropdown-item:active {
  background-color: transparent;
}
.cid-qZIwSamEjJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qZIwSamEjJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qZIwSamEjJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qZIwSamEjJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qZIwSamEjJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qZIwSamEjJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZIwSamEjJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qZIwSamEjJ .navbar-buttons {
  text-align: center;
}
.cid-qZIwSamEjJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qZIwSamEjJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qZIwSamEjJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZIwSamEjJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZIwSamEjJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZIwSamEjJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZIwSamEjJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZIwSamEjJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZIwSamEjJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZIwSamEjJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZIwSamEjJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qZIwSamEjJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qZIwSamEjJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qZIwSamEjJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qZIwSamEjJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qZIwSamEjJ .navbar {
    height: 77px;
  }
  .cid-qZIwSamEjJ .navbar.opened {
    height: auto;
  }
  .cid-qZIwSamEjJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qZIwSdDnkg {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qZIwSdDnkg H1 {
  color: #986ee7;
}
.cid-qZIwSdDnkg H3 {
  color: #767676;
}
.cid-qZIwSdDnkg P {
  color: #767676;
}
.cid-qZIwSdDnkg SPAN {
  color: #84510e;
}
.cid-qZIDqVpkTF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #c9edff;
  overflow: hidden !important;
}
.cid-qZIDqVpkTF .container-fluid {
  padding: 0 5rem;
}
.cid-qZIDqVpkTF .animated-element {
  color: #efefef;
}
.cid-qZIDqVpkTF .img-block {
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-qZIDqVpkTF .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-qZIDqVpkTF .container-fluid {
    padding: 0 1rem;
  }
  .cid-qZIDqVpkTF .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-qZIDqVpkTF .mbr-section-title {
  color: #767676;
}
.cid-qZIDqVpkTF .mbr-section-subtitle,
.cid-qZIDqVpkTF .mbr-section-btn DIV {
  color: #767676;
}
.cid-qZILoDgwH0 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #c9edff;
}
.cid-qZILoDgwH0 .container-fluid {
  padding: 0 3rem;
}
.cid-qZILoDgwH0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZILoDgwH0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qZILoDgwH0 .card {
  margin-bottom: 2rem;
}
.cid-qZILoDgwH0 .card-img {
  width: auto !important;
}
.cid-qZILoDgwH0 .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-qZILoDgwH0 .content-row {
  word-wrap: break-word;
}
.cid-qZILoDgwH0 .media {
  width: initial;
  height: initial;
  margin: initial;
  align-items: center;
}
.cid-qZILoDgwH0 .media .media-body {
  flex: none;
}
.cid-qZILoDgwH0 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-qZILoDgwH0 .card-title {
  color: #fe525b;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qZILoDgwH0 .card-title,
  .cid-qZILoDgwH0 .card-box {
    text-align: left;
  }
  .cid-qZILoDgwH0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qZILoDgwH0 .mbr-section-title,
.cid-qZILoDgwH0 .underline {
  color: #767676;
}
.cid-qZIMD4uTBZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fffeea;
  overflow: hidden !important;
}
.cid-qZIMD4uTBZ .container-fluid {
  padding: 0 5rem;
}
.cid-qZIMD4uTBZ .animated-element {
  color: #efefef;
}
.cid-qZIMD4uTBZ .img-block {
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-qZIMD4uTBZ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-qZIMD4uTBZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-qZIMD4uTBZ .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-qZIMD4uTBZ .mbr-section-title {
  color: #767676;
}
.cid-qZIMD4uTBZ .mbr-section-subtitle,
.cid-qZIMD4uTBZ .mbr-section-btn DIV {
  color: #767676;
}
.cid-qZIMEZxYWQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #fffeea;
}
.cid-qZIMEZxYWQ .container-fluid {
  padding: 0 3rem;
}
.cid-qZIMEZxYWQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZIMEZxYWQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qZIMEZxYWQ .card {
  margin-bottom: 2rem;
}
.cid-qZIMEZxYWQ .card-img {
  width: auto !important;
}
.cid-qZIMEZxYWQ .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-qZIMEZxYWQ .content-row {
  word-wrap: break-word;
}
.cid-qZIMEZxYWQ .media {
  width: initial;
  height: initial;
  margin: initial;
  align-items: center;
}
.cid-qZIMEZxYWQ .media .media-body {
  flex: none;
}
.cid-qZIMEZxYWQ .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-qZIMEZxYWQ .card-title {
  color: #fe525b;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qZIMEZxYWQ .card-title,
  .cid-qZIMEZxYWQ .card-box {
    text-align: left;
  }
  .cid-qZIMEZxYWQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qZIMEZxYWQ .mbr-section-title,
.cid-qZIMEZxYWQ .underline {
  color: #767676;
}
.cid-qZIzqtaU9K {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qZIzqtaU9K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZIzqtaU9K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZIzqtaU9K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZIzqtaU9K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZIzqtaU9K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #7ccbf1);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZIzqtaU9K .icon-focus {
  display: none;
}
.cid-qZIzqtaU9K .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qZIzqtaU9K ul {
  font-size: 0;
}
.cid-qZIzqtaU9K .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qZIzqtaU9K .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qZIzqtaU9K .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qZIzqtaU9K .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qZIzqtaU9K .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qZIzqtaU9K .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qZIzqtaU9K .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZIzqtaU9K .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qZIzqtaU9K .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qZIzqtaU9K .btn:hover {
  background: transparent !important;
}
.cid-qZIzqtaU9K .btn:hover:before {
  background: transparent !important;
}
.cid-qZIzqtaU9K .btn:before {
  background-color: transparent !important;
}
.cid-qZIzqtaU9K .btn:focus {
  box-shadow: none;
}
.cid-qZIzqtaU9K .mbr-section-title,
.cid-qZIzqtaU9K .underline {
  color: #84510e;
}
.cid-rJx7Coxq6B {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx7Coxq6B .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx7Coxq6B .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx7Coxq6B .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx7Coxq6B .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx7Coxq6B .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx7Coxq6B .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx7Coxq6B .card .panel-body {
  color: #767676;
}
.cid-rJx7Coxq6B H2 {
  color: #84510e;
}
.cid-rJx7Coxq6B H4 {
  color: #5b686b;
}
.cid-qZIwSqG4ma {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qZIwSqG4ma .title {
  margin-bottom: 2rem;
}
.cid-qZIwSqG4ma .mbr-section-subtitle {
  color: #767676;
}
.cid-qZIwSqG4ma a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qZIwSqG4ma a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qZIwSqG4ma .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qZIwSqG4ma .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qZIwSqG4ma H2 {
  color: #84510e;
}
.cid-qZIwSt2n8H {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qZIwSt2n8H .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qZIwSt2n8H .social-list a:focus {
  text-decoration: none;
}
.cid-qZIwSt2n8H H2 {
  color: #ffffff;
}
.cid-qZIwSwlkPm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qZIwSwlkPm .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qZIwSwlkPm .content {
    text-align: center;
  }
  .cid-qZIwSwlkPm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qZIwSwlkPm .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qZIwSwlkPm .input-group-btn {
  display: inline-block;
}
.cid-qZIwSwlkPm .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qZIwSwlkPm .img-logo img {
  height: 6rem;
}
.cid-qZIwSwlkPm [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qZIwSwlkPm [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qZIwSwlkPm .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qZIwSwlkPm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qZIwSwlkPm .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qZIwSwlkPm .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qZIwSwlkPm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qZIwSwlkPm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qZIwSwlkPm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qZIwSwlkPm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qZIwSwlkPm .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qZIwSwlkPm form .input-group input.form-control,
.cid-qZIwSwlkPm form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qZIwSwlkPm .form-inline {
  justify-content: center;
}
.cid-qZIwSwlkPm .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qZIwSwlkPm .foot-logo {
    text-align: center !important;
  }
  .cid-qZIwSwlkPm .foot-title {
    text-align: center !important;
  }
  .cid-qZIwSwlkPm .mbr-text {
    text-align: center !important;
  }
}
.cid-qZIwSzq934 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qZIwSzq934 .container-fluid {
  padding: 0 3rem;
}
.cid-qZIwSzq934 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qZIwSzq934 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qZIwSzq934 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qZIwSzq934 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qZIwSzq934 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qZIwSzq934 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qZIwSzq934 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qZIwSzq934 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qZIwSBHDZG {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qZIwSBHDZG .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qZIwSBHDZG .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qZIwSBHDZG .btn-social {
  border: none !important;
}
.cid-qZIwSBHDZG [class^="socicon-"]:before,
.cid-qZIwSBHDZG [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qZIwSBHDZG .btn {
    font-size: 20px !important;
  }
}
.cid-qZIwSBHDZG .mbr-section-title {
  color: #ffffff;
}
.cid-qUHttg50kD .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;
  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-qUHttg50kD .nav-item:focus,
.cid-qUHttg50kD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUHttg50kD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUHttg50kD .nav-item .nav-link {
    position: relative;
  }
  .cid-qUHttg50kD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUHttg50kD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUHttg50kD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUHttg50kD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUHttg50kD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUHttg50kD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUHttg50kD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUHttg50kD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUHttg50kD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUHttg50kD .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-qUHttg50kD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUHttg50kD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUHttg50kD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUHttg50kD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUHttg50kD .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-qUHttg50kD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUHttg50kD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUHttg50kD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUHttg50kD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUHttg50kD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUHttg50kD .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUHttg50kD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUHttg50kD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUHttg50kD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUHttg50kD .dropdown-item.active,
.cid-qUHttg50kD .dropdown-item:active {
  background-color: transparent;
}
.cid-qUHttg50kD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUHttg50kD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUHttg50kD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUHttg50kD .navbar-buttons {
  text-align: center;
}
.cid-qUHttg50kD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUHttg50kD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUHttg50kD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUHttg50kD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUHttg50kD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUHttg50kD .navbar {
    height: 77px;
  }
  .cid-qUHttg50kD .navbar.opened {
    height: auto;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHtthBSn9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUHtthBSn9 p {
  color: #767676;
}
.cid-qUHtthBSn9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUHtthBSn9 .main {
  flex-direction: row-reverse;
}
.cid-qUHtthBSn9 .row-element,
.cid-qUHtthBSn9 .image-element {
  padding: 0;
}
.cid-qUHtthBSn9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUHtthBSn9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUHtthBSn9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtthBSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUHtthBSn9 .underline .line {
    height: 2px;
  }
  .cid-qUHtthBSn9 .mbr-title,
  .cid-qUHtthBSn9 .underline,
  .cid-qUHtthBSn9 .mbr-text,
  .cid-qUHtthBSn9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUHtthBSn9 .mbr-title,
.cid-qUHtthBSn9 .underline {
  color: #84510e;
}
.cid-qUHttiHxyO {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttiHxyO .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttiHxyO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHttiHxyO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUHttiHxyO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper {
  height: 1%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUHttiHxyO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUHtVss49S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHtVss49S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUHtVss49S .icon-focus {
  display: none;
}
.cid-qUHtVss49S .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUHtVss49S ul {
  font-size: 0;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUHtVss49S .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qUHtVss49S .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtVss49S .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtVss49S .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .btn:hover {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:hover:before {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:before {
  background-color: transparent !important;
}
.cid-qUHtVss49S .btn:focus {
  box-shadow: none;
}
.cid-rJx8K1KSEZ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8K1KSEZ .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8K1KSEZ .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8K1KSEZ .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8K1KSEZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8K1KSEZ .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8K1KSEZ .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8K1KSEZ .card .panel-body {
  color: #767676;
}
.cid-rJx8K1KSEZ H2 {
  color: #84510e;
}
.cid-rJx8K1KSEZ H4 {
  color: #5b686b;
}
.cid-qUHttnCAub {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttnCAub .title {
  margin-bottom: 2rem;
}
.cid-qUHttnCAub .mbr-section-subtitle {
  color: #767676;
}
.cid-qUHttnCAub a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUHttnCAub a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUHttnCAub .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUHttnCAub .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUHttnCAub H2 {
  color: #84510e;
}
.cid-qUHttp05Cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUHttp05Cw .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUHttp05Cw .social-list a:focus {
  text-decoration: none;
}
.cid-qUHttp05Cw H2 {
  color: #ffffff;
}
.cid-qUHttqSjed {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUHttqSjed .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .content {
    text-align: center;
  }
  .cid-qUHttqSjed .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUHttqSjed .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUHttqSjed .input-group-btn {
  display: inline-block;
}
.cid-qUHttqSjed .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUHttqSjed .img-logo img {
  height: 6rem;
}
.cid-qUHttqSjed [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUHttqSjed [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUHttqSjed .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUHttqSjed .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUHttqSjed .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUHttqSjed .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUHttqSjed .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUHttqSjed .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUHttqSjed .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUHttqSjed form .input-group input.form-control,
.cid-qUHttqSjed form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUHttqSjed .form-inline {
  justify-content: center;
}
.cid-qUHttqSjed .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .foot-logo {
    text-align: center !important;
  }
  .cid-qUHttqSjed .foot-title {
    text-align: center !important;
  }
  .cid-qUHttqSjed .mbr-text {
    text-align: center !important;
  }
}
.cid-qUHttsqPao {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttsqPao .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttsqPao ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUHttsqPao ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUHttsqPao ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUHttsqPao .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUHttsqPao .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUHttsqPao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtttSH8s {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUHtttSH8s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUHtttSH8s .btn-social {
  border: none !important;
}
.cid-qUHtttSH8s [class^="socicon-"]:before,
.cid-qUHtttSH8s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUHtttSH8s .btn {
    font-size: 20px !important;
  }
}
.cid-qUHtttSH8s .mbr-section-title {
  color: #ffffff;
}
.cid-qUHttg50kD .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;
  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-qUHttg50kD .nav-item:focus,
.cid-qUHttg50kD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUHttg50kD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUHttg50kD .nav-item .nav-link {
    position: relative;
  }
  .cid-qUHttg50kD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUHttg50kD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUHttg50kD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUHttg50kD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUHttg50kD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUHttg50kD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUHttg50kD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUHttg50kD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUHttg50kD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUHttg50kD .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-qUHttg50kD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUHttg50kD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUHttg50kD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUHttg50kD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUHttg50kD .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-qUHttg50kD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUHttg50kD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUHttg50kD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUHttg50kD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUHttg50kD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUHttg50kD .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUHttg50kD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUHttg50kD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUHttg50kD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUHttg50kD .dropdown-item.active,
.cid-qUHttg50kD .dropdown-item:active {
  background-color: transparent;
}
.cid-qUHttg50kD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUHttg50kD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUHttg50kD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUHttg50kD .navbar-buttons {
  text-align: center;
}
.cid-qUHttg50kD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUHttg50kD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUHttg50kD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUHttg50kD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUHttg50kD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUHttg50kD .navbar {
    height: 77px;
  }
  .cid-qUHttg50kD .navbar.opened {
    height: auto;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHtthBSn9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUHtthBSn9 p {
  color: #767676;
}
.cid-qUHtthBSn9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUHtthBSn9 .main {
  flex-direction: row-reverse;
}
.cid-qUHtthBSn9 .row-element,
.cid-qUHtthBSn9 .image-element {
  padding: 0;
}
.cid-qUHtthBSn9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUHtthBSn9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUHtthBSn9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtthBSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUHtthBSn9 .underline .line {
    height: 2px;
  }
  .cid-qUHtthBSn9 .mbr-title,
  .cid-qUHtthBSn9 .underline,
  .cid-qUHtthBSn9 .mbr-text,
  .cid-qUHtthBSn9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUHtthBSn9 .mbr-title,
.cid-qUHtthBSn9 .underline {
  color: #84510e;
}
.cid-qUHttiHxyO {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttiHxyO .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttiHxyO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHttiHxyO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUHttiHxyO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper {
  height: 1%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUHttiHxyO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rJx8X1yJFN {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8X1yJFN .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8X1yJFN .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8X1yJFN .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8X1yJFN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8X1yJFN .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8X1yJFN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8X1yJFN .card .panel-body {
  color: #767676;
}
.cid-rJx8X1yJFN H2 {
  color: #84510e;
}
.cid-rJx8X1yJFN H4 {
  color: #5b686b;
}
.cid-qUHttnCAub {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttnCAub .title {
  margin-bottom: 2rem;
}
.cid-qUHttnCAub .mbr-section-subtitle {
  color: #767676;
}
.cid-qUHttnCAub a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUHttnCAub a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUHttnCAub .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUHttnCAub .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUHttnCAub H2 {
  color: #84510e;
}
.cid-qUHttp05Cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUHttp05Cw .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUHttp05Cw .social-list a:focus {
  text-decoration: none;
}
.cid-qUHttp05Cw H2 {
  color: #ffffff;
}
.cid-qUHttqSjed {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUHttqSjed .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .content {
    text-align: center;
  }
  .cid-qUHttqSjed .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUHttqSjed .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUHttqSjed .input-group-btn {
  display: inline-block;
}
.cid-qUHttqSjed .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUHttqSjed .img-logo img {
  height: 6rem;
}
.cid-qUHttqSjed [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUHttqSjed [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUHttqSjed .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUHttqSjed .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUHttqSjed .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUHttqSjed .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUHttqSjed .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUHttqSjed .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUHttqSjed .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUHttqSjed form .input-group input.form-control,
.cid-qUHttqSjed form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUHttqSjed .form-inline {
  justify-content: center;
}
.cid-qUHttqSjed .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .foot-logo {
    text-align: center !important;
  }
  .cid-qUHttqSjed .foot-title {
    text-align: center !important;
  }
  .cid-qUHttqSjed .mbr-text {
    text-align: center !important;
  }
}
.cid-qUHttsqPao {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttsqPao .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttsqPao ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUHttsqPao ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUHttsqPao ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUHttsqPao .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUHttsqPao .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUHttsqPao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtttSH8s {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUHtttSH8s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUHtttSH8s .btn-social {
  border: none !important;
}
.cid-qUHtttSH8s [class^="socicon-"]:before,
.cid-qUHtttSH8s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUHtttSH8s .btn {
    font-size: 20px !important;
  }
}
.cid-qUHtttSH8s .mbr-section-title {
  color: #ffffff;
}
.cid-qUHttg50kD .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;
  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-qUHttg50kD .nav-item:focus,
.cid-qUHttg50kD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUHttg50kD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUHttg50kD .nav-item .nav-link {
    position: relative;
  }
  .cid-qUHttg50kD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUHttg50kD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUHttg50kD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUHttg50kD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUHttg50kD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUHttg50kD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUHttg50kD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUHttg50kD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUHttg50kD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUHttg50kD .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-qUHttg50kD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUHttg50kD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUHttg50kD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUHttg50kD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUHttg50kD .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-qUHttg50kD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUHttg50kD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUHttg50kD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUHttg50kD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUHttg50kD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUHttg50kD .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUHttg50kD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUHttg50kD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUHttg50kD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUHttg50kD .dropdown-item.active,
.cid-qUHttg50kD .dropdown-item:active {
  background-color: transparent;
}
.cid-qUHttg50kD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUHttg50kD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUHttg50kD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUHttg50kD .navbar-buttons {
  text-align: center;
}
.cid-qUHttg50kD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUHttg50kD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUHttg50kD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUHttg50kD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUHttg50kD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUHttg50kD .navbar {
    height: 77px;
  }
  .cid-qUHttg50kD .navbar.opened {
    height: auto;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHtthBSn9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUHtthBSn9 p {
  color: #767676;
}
.cid-qUHtthBSn9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUHtthBSn9 .main {
  flex-direction: row-reverse;
}
.cid-qUHtthBSn9 .row-element,
.cid-qUHtthBSn9 .image-element {
  padding: 0;
}
.cid-qUHtthBSn9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUHtthBSn9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUHtthBSn9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtthBSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUHtthBSn9 .underline .line {
    height: 2px;
  }
  .cid-qUHtthBSn9 .mbr-title,
  .cid-qUHtthBSn9 .underline,
  .cid-qUHtthBSn9 .mbr-text,
  .cid-qUHtthBSn9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUHtthBSn9 .mbr-title,
.cid-qUHtthBSn9 .underline {
  color: #84510e;
}
.cid-qUHttiHxyO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttiHxyO .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttiHxyO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHttiHxyO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUHttiHxyO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper {
  height: 1%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUHttiHxyO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rzKu5D24wZ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rzKu5D24wZ .container-fluid {
  padding: 0 3rem;
}
.cid-rzKu5D24wZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzKu5D24wZ .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rzKu5D24wZ .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rzKu5D24wZ .card .card-wrapper {
  height: 1%;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rzKu5D24wZ .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rzKu5D24wZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUHtVss49S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHtVss49S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUHtVss49S .icon-focus {
  display: none;
}
.cid-qUHtVss49S .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUHtVss49S ul {
  font-size: 0;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUHtVss49S .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qUHtVss49S .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtVss49S .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtVss49S .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .btn:hover {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:hover:before {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:before {
  background-color: transparent !important;
}
.cid-qUHtVss49S .btn:focus {
  box-shadow: none;
}
.cid-rJx8xoLTSN {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8xoLTSN .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8xoLTSN .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8xoLTSN .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8xoLTSN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8xoLTSN .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8xoLTSN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8xoLTSN .card .panel-body {
  color: #767676;
}
.cid-rJx8xoLTSN H2 {
  color: #84510e;
}
.cid-rJx8xoLTSN H4 {
  color: #5b686b;
}
.cid-qUHttnCAub {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttnCAub .title {
  margin-bottom: 2rem;
}
.cid-qUHttnCAub .mbr-section-subtitle {
  color: #767676;
}
.cid-qUHttnCAub a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUHttnCAub a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUHttnCAub .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUHttnCAub .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUHttnCAub H2 {
  color: #84510e;
}
.cid-qUHttp05Cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUHttp05Cw .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUHttp05Cw .social-list a:focus {
  text-decoration: none;
}
.cid-qUHttp05Cw H2 {
  color: #ffffff;
}
.cid-qUHttqSjed {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUHttqSjed .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .content {
    text-align: center;
  }
  .cid-qUHttqSjed .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUHttqSjed .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUHttqSjed .input-group-btn {
  display: inline-block;
}
.cid-qUHttqSjed .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUHttqSjed .img-logo img {
  height: 6rem;
}
.cid-qUHttqSjed [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUHttqSjed [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUHttqSjed .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUHttqSjed .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUHttqSjed .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUHttqSjed .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUHttqSjed .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUHttqSjed .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUHttqSjed .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUHttqSjed form .input-group input.form-control,
.cid-qUHttqSjed form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUHttqSjed .form-inline {
  justify-content: center;
}
.cid-qUHttqSjed .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .foot-logo {
    text-align: center !important;
  }
  .cid-qUHttqSjed .foot-title {
    text-align: center !important;
  }
  .cid-qUHttqSjed .mbr-text {
    text-align: center !important;
  }
}
.cid-qUHttsqPao {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttsqPao .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttsqPao ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUHttsqPao ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUHttsqPao ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUHttsqPao .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUHttsqPao .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUHttsqPao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtttSH8s {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUHtttSH8s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUHtttSH8s .btn-social {
  border: none !important;
}
.cid-qUHtttSH8s [class^="socicon-"]:before,
.cid-qUHtttSH8s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUHtttSH8s .btn {
    font-size: 20px !important;
  }
}
.cid-qUHtttSH8s .mbr-section-title {
  color: #ffffff;
}
.cid-qUHttg50kD .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;
  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-qUHttg50kD .nav-item:focus,
.cid-qUHttg50kD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qUHttg50kD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qUHttg50kD .nav-item .nav-link {
    position: relative;
  }
  .cid-qUHttg50kD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qUHttg50kD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qUHttg50kD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qUHttg50kD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qUHttg50kD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qUHttg50kD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qUHttg50kD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qUHttg50kD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qUHttg50kD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qUHttg50kD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qUHttg50kD .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-qUHttg50kD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qUHttg50kD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qUHttg50kD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qUHttg50kD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qUHttg50kD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qUHttg50kD .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-qUHttg50kD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qUHttg50kD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qUHttg50kD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qUHttg50kD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qUHttg50kD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qUHttg50kD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qUHttg50kD .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qUHttg50kD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qUHttg50kD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qUHttg50kD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qUHttg50kD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qUHttg50kD .dropdown-item.active,
.cid-qUHttg50kD .dropdown-item:active {
  background-color: transparent;
}
.cid-qUHttg50kD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qUHttg50kD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qUHttg50kD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qUHttg50kD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qUHttg50kD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qUHttg50kD .navbar-buttons {
  text-align: center;
}
.cid-qUHttg50kD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qUHttg50kD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qUHttg50kD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qUHttg50kD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qUHttg50kD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qUHttg50kD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qUHttg50kD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qUHttg50kD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qUHttg50kD .navbar {
    height: 77px;
  }
  .cid-qUHttg50kD .navbar.opened {
    height: auto;
  }
  .cid-qUHttg50kD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qUHtthBSn9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUHtthBSn9 p {
  color: #767676;
}
.cid-qUHtthBSn9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUHtthBSn9 .main {
  flex-direction: row-reverse;
}
.cid-qUHtthBSn9 .row-element,
.cid-qUHtthBSn9 .image-element {
  padding: 0;
}
.cid-qUHtthBSn9 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUHtthBSn9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUHtthBSn9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtthBSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUHtthBSn9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUHtthBSn9 .underline .line {
    height: 2px;
  }
  .cid-qUHtthBSn9 .mbr-title,
  .cid-qUHtthBSn9 .underline,
  .cid-qUHtthBSn9 .mbr-text,
  .cid-qUHtthBSn9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUHtthBSn9 .mbr-title,
.cid-qUHtthBSn9 .underline {
  color: #84510e;
}
.cid-qUHttiHxyO {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttiHxyO .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttiHxyO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHttiHxyO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qUHttiHxyO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper {
  height: 1%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qUHttiHxyO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qUHttiHxyO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qUHttiHxyO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUHtVss49S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHtVss49S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qUHtVss49S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qUHtVss49S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qUHtVss49S .icon-focus {
  display: none;
}
.cid-qUHtVss49S .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-qUHtVss49S ul {
  font-size: 0;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-qUHtVss49S .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qUHtVss49S .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-qUHtVss49S .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHtVss49S .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtVss49S .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qUHtVss49S .btn:hover {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:hover:before {
  background: transparent !important;
}
.cid-qUHtVss49S .btn:before {
  background-color: transparent !important;
}
.cid-qUHtVss49S .btn:focus {
  box-shadow: none;
}
.cid-rJx8D0kosE {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8D0kosE .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8D0kosE .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8D0kosE .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8D0kosE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8D0kosE .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8D0kosE .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8D0kosE .card .panel-body {
  color: #767676;
}
.cid-rJx8D0kosE H2 {
  color: #84510e;
}
.cid-rJx8D0kosE H4 {
  color: #5b686b;
}
.cid-qUHttnCAub {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qUHttnCAub .title {
  margin-bottom: 2rem;
}
.cid-qUHttnCAub .mbr-section-subtitle {
  color: #767676;
}
.cid-qUHttnCAub a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qUHttnCAub a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qUHttnCAub .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qUHttnCAub .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qUHttnCAub H2 {
  color: #84510e;
}
.cid-qUHttp05Cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qUHttp05Cw .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qUHttp05Cw .social-list a:focus {
  text-decoration: none;
}
.cid-qUHttp05Cw H2 {
  color: #ffffff;
}
.cid-qUHttqSjed {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUHttqSjed .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .content {
    text-align: center;
  }
  .cid-qUHttqSjed .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qUHttqSjed .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qUHttqSjed .input-group-btn {
  display: inline-block;
}
.cid-qUHttqSjed .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qUHttqSjed .img-logo img {
  height: 6rem;
}
.cid-qUHttqSjed [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qUHttqSjed [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qUHttqSjed .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qUHttqSjed .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qUHttqSjed .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qUHttqSjed .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qUHttqSjed .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qUHttqSjed .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qUHttqSjed .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qUHttqSjed form .input-group input.form-control,
.cid-qUHttqSjed form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qUHttqSjed .form-inline {
  justify-content: center;
}
.cid-qUHttqSjed .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qUHttqSjed .foot-logo {
    text-align: center !important;
  }
  .cid-qUHttqSjed .foot-title {
    text-align: center !important;
  }
  .cid-qUHttqSjed .mbr-text {
    text-align: center !important;
  }
}
.cid-qUHttsqPao {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUHttsqPao .container-fluid {
  padding: 0 3rem;
}
.cid-qUHttsqPao ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qUHttsqPao ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qUHttsqPao ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qUHttsqPao .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUHttsqPao .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qUHttsqPao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUHttsqPao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qUHtttSH8s {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qUHtttSH8s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUHtttSH8s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUHtttSH8s .btn-social {
  border: none !important;
}
.cid-qUHtttSH8s [class^="socicon-"]:before,
.cid-qUHtttSH8s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUHtttSH8s .btn {
    font-size: 20px !important;
  }
}
.cid-qUHtttSH8s .mbr-section-title {
  color: #ffffff;
}
.cid-rvGKjbgGxR .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;
  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-rvGKjbgGxR .nav-item:focus,
.cid-rvGKjbgGxR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rvGKjbgGxR .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rvGKjbgGxR .nav-item .nav-link {
    position: relative;
  }
  .cid-rvGKjbgGxR .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rvGKjbgGxR .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rvGKjbgGxR .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rvGKjbgGxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rvGKjbgGxR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rvGKjbgGxR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rvGKjbgGxR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rvGKjbgGxR .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rvGKjbgGxR .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rvGKjbgGxR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rvGKjbgGxR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rvGKjbgGxR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rvGKjbgGxR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rvGKjbgGxR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rvGKjbgGxR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rvGKjbgGxR .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-rvGKjbgGxR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rvGKjbgGxR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rvGKjbgGxR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rvGKjbgGxR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rvGKjbgGxR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rvGKjbgGxR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rvGKjbgGxR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rvGKjbgGxR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rvGKjbgGxR .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-rvGKjbgGxR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rvGKjbgGxR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rvGKjbgGxR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rvGKjbgGxR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rvGKjbgGxR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rvGKjbgGxR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rvGKjbgGxR .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rvGKjbgGxR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rvGKjbgGxR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rvGKjbgGxR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rvGKjbgGxR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rvGKjbgGxR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rvGKjbgGxR .dropdown-item.active,
.cid-rvGKjbgGxR .dropdown-item:active {
  background-color: transparent;
}
.cid-rvGKjbgGxR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rvGKjbgGxR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rvGKjbgGxR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rvGKjbgGxR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rvGKjbgGxR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rvGKjbgGxR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rvGKjbgGxR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rvGKjbgGxR .navbar-buttons {
  text-align: center;
}
.cid-rvGKjbgGxR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rvGKjbgGxR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rvGKjbgGxR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rvGKjbgGxR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rvGKjbgGxR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rvGKjbgGxR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rvGKjbgGxR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rvGKjbgGxR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rvGKjbgGxR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rvGKjbgGxR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rvGKjbgGxR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rvGKjbgGxR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rvGKjbgGxR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rvGKjbgGxR .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rvGKjbgGxR .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rvGKjbgGxR .navbar {
    height: 77px;
  }
  .cid-rvGKjbgGxR .navbar.opened {
    height: auto;
  }
  .cid-rvGKjbgGxR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rvGKjdTrR8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rvGKjdTrR8 p {
  color: #767676;
}
.cid-rvGKjdTrR8 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rvGKjdTrR8 .main {
  flex-direction: row-reverse;
}
.cid-rvGKjdTrR8 .row-element,
.cid-rvGKjdTrR8 .image-element {
  padding: 0;
}
.cid-rvGKjdTrR8 .image-element {
  display: flex;
  justify-content: center;
}
.cid-rvGKjdTrR8 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rvGKjdTrR8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rvGKjdTrR8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rvGKjdTrR8 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rvGKjdTrR8 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rvGKjdTrR8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rvGKjdTrR8 .underline .line {
    height: 2px;
  }
  .cid-rvGKjdTrR8 .mbr-title,
  .cid-rvGKjdTrR8 .underline,
  .cid-rvGKjdTrR8 .mbr-text,
  .cid-rvGKjdTrR8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rvGKjdTrR8 .mbr-title,
.cid-rvGKjdTrR8 .underline {
  color: #84510e;
}
.cid-rvGKjfEnBO {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rvGKjfEnBO .container-fluid {
  padding: 0 3rem;
}
.cid-rvGKjfEnBO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rvGKjfEnBO .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rvGKjfEnBO .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rvGKjfEnBO .card .card-wrapper {
  height: 1%;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rvGKjfEnBO .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rvGKjfEnBO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rvGKjiJOX4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rvGKjiJOX4 .container-fluid {
  padding: 0 3rem;
}
.cid-rvGKjiJOX4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rvGKjiJOX4 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rvGKjiJOX4 .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rvGKjiJOX4 .card .card-wrapper {
  height: 1%;
}
.cid-rvGKjiJOX4 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rvGKjiJOX4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rvGKjiJOX4 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rvGKjiJOX4 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rvGKjiJOX4 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rvGKjiJOX4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rvH3JYEJVX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rvH3JYEJVX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rvH3JYEJVX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rvH3JYEJVX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rvH3JYEJVX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rvH3JYEJVX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rvH3JYEJVX .icon-focus {
  display: none;
}
.cid-rvH3JYEJVX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rvH3JYEJVX ul {
  font-size: 0;
}
.cid-rvH3JYEJVX .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rvH3JYEJVX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rvH3JYEJVX .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rvH3JYEJVX .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rvH3JYEJVX .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rvH3JYEJVX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rvH3JYEJVX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rvH3JYEJVX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rvH3JYEJVX .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rvH3JYEJVX .btn:hover {
  background: transparent !important;
}
.cid-rvH3JYEJVX .btn:hover:before {
  background: transparent !important;
}
.cid-rvH3JYEJVX .btn:before {
  background-color: transparent !important;
}
.cid-rvH3JYEJVX .btn:focus {
  box-shadow: none;
}
.cid-rJx99Rmjer {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx99Rmjer .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx99Rmjer .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx99Rmjer .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx99Rmjer .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx99Rmjer .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx99Rmjer .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx99Rmjer .card .panel-body {
  color: #767676;
}
.cid-rJx99Rmjer H2 {
  color: #84510e;
}
.cid-rJx99Rmjer H4 {
  color: #5b686b;
}
.cid-rvGKju0lsX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rvGKju0lsX .title {
  margin-bottom: 2rem;
}
.cid-rvGKju0lsX .mbr-section-subtitle {
  color: #767676;
}
.cid-rvGKju0lsX a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rvGKju0lsX a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rvGKju0lsX .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rvGKju0lsX .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rvGKju0lsX H2 {
  color: #84510e;
}
.cid-rvGKjwTfSh {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rvGKjwTfSh .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rvGKjwTfSh .social-list a:focus {
  text-decoration: none;
}
.cid-rvGKjwTfSh H2 {
  color: #ffffff;
}
.cid-rvGKjCvNDl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rvGKjCvNDl .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rvGKjCvNDl .content {
    text-align: center;
  }
  .cid-rvGKjCvNDl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rvGKjCvNDl .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rvGKjCvNDl .input-group-btn {
  display: inline-block;
}
.cid-rvGKjCvNDl .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rvGKjCvNDl .img-logo img {
  height: 6rem;
}
.cid-rvGKjCvNDl [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rvGKjCvNDl [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rvGKjCvNDl .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rvGKjCvNDl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rvGKjCvNDl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rvGKjCvNDl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rvGKjCvNDl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rvGKjCvNDl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rvGKjCvNDl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rvGKjCvNDl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rvGKjCvNDl .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rvGKjCvNDl form .input-group input.form-control,
.cid-rvGKjCvNDl form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rvGKjCvNDl .form-inline {
  justify-content: center;
}
.cid-rvGKjCvNDl .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rvGKjCvNDl .foot-logo {
    text-align: center !important;
  }
  .cid-rvGKjCvNDl .foot-title {
    text-align: center !important;
  }
  .cid-rvGKjCvNDl .mbr-text {
    text-align: center !important;
  }
}
.cid-rvGKjFDGOL {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rvGKjFDGOL .container-fluid {
  padding: 0 3rem;
}
.cid-rvGKjFDGOL ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rvGKjFDGOL ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rvGKjFDGOL ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rvGKjFDGOL ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rvGKjFDGOL .container-fluid {
    padding: 0 1rem;
  }
  .cid-rvGKjFDGOL .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rvGKjFDGOL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rvGKjFDGOL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rvGKjIsthz {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rvGKjIsthz .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rvGKjIsthz .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rvGKjIsthz .btn-social {
  border: none !important;
}
.cid-rvGKjIsthz [class^="socicon-"]:before,
.cid-rvGKjIsthz [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rvGKjIsthz .btn {
    font-size: 20px !important;
  }
}
.cid-rvGKjIsthz .mbr-section-title {
  color: #ffffff;
}
.cid-rw3mZanamK .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;
  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-rw3mZanamK .nav-item:focus,
.cid-rw3mZanamK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rw3mZanamK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rw3mZanamK .nav-item .nav-link {
    position: relative;
  }
  .cid-rw3mZanamK .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rw3mZanamK .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rw3mZanamK .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rw3mZanamK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rw3mZanamK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rw3mZanamK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rw3mZanamK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rw3mZanamK .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rw3mZanamK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rw3mZanamK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rw3mZanamK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rw3mZanamK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rw3mZanamK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rw3mZanamK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rw3mZanamK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rw3mZanamK .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-rw3mZanamK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rw3mZanamK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rw3mZanamK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rw3mZanamK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rw3mZanamK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rw3mZanamK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rw3mZanamK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rw3mZanamK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rw3mZanamK .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-rw3mZanamK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rw3mZanamK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rw3mZanamK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rw3mZanamK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rw3mZanamK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rw3mZanamK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rw3mZanamK .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rw3mZanamK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rw3mZanamK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rw3mZanamK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rw3mZanamK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rw3mZanamK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rw3mZanamK .dropdown-item.active,
.cid-rw3mZanamK .dropdown-item:active {
  background-color: transparent;
}
.cid-rw3mZanamK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rw3mZanamK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rw3mZanamK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rw3mZanamK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rw3mZanamK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rw3mZanamK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rw3mZanamK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rw3mZanamK .navbar-buttons {
  text-align: center;
}
.cid-rw3mZanamK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rw3mZanamK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rw3mZanamK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rw3mZanamK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rw3mZanamK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rw3mZanamK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rw3mZanamK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rw3mZanamK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rw3mZanamK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rw3mZanamK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rw3mZanamK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rw3mZanamK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rw3mZanamK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rw3mZanamK .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rw3mZanamK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rw3mZanamK .navbar {
    height: 77px;
  }
  .cid-rw3mZanamK .navbar.opened {
    height: auto;
  }
  .cid-rw3mZanamK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rw3mZbSEq6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rw3mZbSEq6 p {
  color: #767676;
}
.cid-rw3mZbSEq6 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rw3mZbSEq6 .main {
  flex-direction: row-reverse;
}
.cid-rw3mZbSEq6 .row-element,
.cid-rw3mZbSEq6 .image-element {
  padding: 0;
}
.cid-rw3mZbSEq6 .image-element {
  display: flex;
  justify-content: center;
}
.cid-rw3mZbSEq6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rw3mZbSEq6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rw3mZbSEq6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rw3mZbSEq6 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rw3mZbSEq6 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rw3mZbSEq6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rw3mZbSEq6 .underline .line {
    height: 2px;
  }
  .cid-rw3mZbSEq6 .mbr-title,
  .cid-rw3mZbSEq6 .underline,
  .cid-rw3mZbSEq6 .mbr-text,
  .cid-rw3mZbSEq6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rw3mZbSEq6 .mbr-title,
.cid-rw3mZbSEq6 .underline {
  color: #84510e;
}
.cid-rw3mZdnNVQ {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rw3mZdnNVQ .container-fluid {
  padding: 0 3rem;
}
.cid-rw3mZdnNVQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rw3mZdnNVQ .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rw3mZdnNVQ .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rw3mZdnNVQ .card .card-wrapper {
  height: 1%;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rw3mZdnNVQ .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rw3mZdnNVQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rw3EpSqeWy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rw3EpSqeWy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rw3EpSqeWy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rw3EpSqeWy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rw3EpSqeWy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rw3EpSqeWy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rw3EpSqeWy .icon-focus {
  display: none;
}
.cid-rw3EpSqeWy .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rw3EpSqeWy ul {
  font-size: 0;
}
.cid-rw3EpSqeWy .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rw3EpSqeWy .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rw3EpSqeWy .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rw3EpSqeWy .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rw3EpSqeWy .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rw3EpSqeWy .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rw3EpSqeWy .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rw3EpSqeWy .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rw3EpSqeWy .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rw3EpSqeWy .btn:hover {
  background: transparent !important;
}
.cid-rw3EpSqeWy .btn:hover:before {
  background: transparent !important;
}
.cid-rw3EpSqeWy .btn:before {
  background-color: transparent !important;
}
.cid-rw3EpSqeWy .btn:focus {
  box-shadow: none;
}
.cid-rJx8dHaBR4 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8dHaBR4 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8dHaBR4 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8dHaBR4 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8dHaBR4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8dHaBR4 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8dHaBR4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8dHaBR4 .card .panel-body {
  color: #767676;
}
.cid-rJx8dHaBR4 H2 {
  color: #84510e;
}
.cid-rJx8dHaBR4 H4 {
  color: #5b686b;
}
.cid-rw3mZjOPxi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rw3mZjOPxi .title {
  margin-bottom: 2rem;
}
.cid-rw3mZjOPxi .mbr-section-subtitle {
  color: #767676;
}
.cid-rw3mZjOPxi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rw3mZjOPxi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rw3mZjOPxi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rw3mZjOPxi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rw3mZjOPxi H2 {
  color: #84510e;
}
.cid-rw3mZlD5Y1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rw3mZlD5Y1 .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rw3mZlD5Y1 .social-list a:focus {
  text-decoration: none;
}
.cid-rw3mZlD5Y1 H2 {
  color: #ffffff;
}
.cid-rw3mZph0ct {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rw3mZph0ct .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rw3mZph0ct .content {
    text-align: center;
  }
  .cid-rw3mZph0ct .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rw3mZph0ct .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rw3mZph0ct .input-group-btn {
  display: inline-block;
}
.cid-rw3mZph0ct .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rw3mZph0ct .img-logo img {
  height: 6rem;
}
.cid-rw3mZph0ct [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rw3mZph0ct [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rw3mZph0ct .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rw3mZph0ct .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rw3mZph0ct .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rw3mZph0ct .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rw3mZph0ct .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rw3mZph0ct .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rw3mZph0ct .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rw3mZph0ct .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rw3mZph0ct .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rw3mZph0ct form .input-group input.form-control,
.cid-rw3mZph0ct form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rw3mZph0ct .form-inline {
  justify-content: center;
}
.cid-rw3mZph0ct .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rw3mZph0ct .foot-logo {
    text-align: center !important;
  }
  .cid-rw3mZph0ct .foot-title {
    text-align: center !important;
  }
  .cid-rw3mZph0ct .mbr-text {
    text-align: center !important;
  }
}
.cid-rw3mZsfEIZ {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rw3mZsfEIZ .container-fluid {
  padding: 0 3rem;
}
.cid-rw3mZsfEIZ ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rw3mZsfEIZ ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rw3mZsfEIZ ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rw3mZsfEIZ ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rw3mZsfEIZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rw3mZsfEIZ .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rw3mZsfEIZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rw3mZsfEIZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rw3mZuXNto {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rw3mZuXNto .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rw3mZuXNto .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rw3mZuXNto .btn-social {
  border: none !important;
}
.cid-rw3mZuXNto [class^="socicon-"]:before,
.cid-rw3mZuXNto [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rw3mZuXNto .btn {
    font-size: 20px !important;
  }
}
.cid-rw3mZuXNto .mbr-section-title {
  color: #ffffff;
}
.cid-rzKwUq67jH .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;
  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-rzKwUq67jH .nav-item:focus,
.cid-rzKwUq67jH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzKwUq67jH .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rzKwUq67jH .nav-item .nav-link {
    position: relative;
  }
  .cid-rzKwUq67jH .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rzKwUq67jH .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rzKwUq67jH .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzKwUq67jH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rzKwUq67jH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzKwUq67jH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzKwUq67jH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rzKwUq67jH .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rzKwUq67jH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rzKwUq67jH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzKwUq67jH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzKwUq67jH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rzKwUq67jH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzKwUq67jH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzKwUq67jH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzKwUq67jH .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-rzKwUq67jH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzKwUq67jH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rzKwUq67jH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzKwUq67jH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzKwUq67jH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzKwUq67jH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzKwUq67jH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzKwUq67jH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzKwUq67jH .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-rzKwUq67jH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzKwUq67jH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzKwUq67jH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rzKwUq67jH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzKwUq67jH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rzKwUq67jH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzKwUq67jH .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rzKwUq67jH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzKwUq67jH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzKwUq67jH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzKwUq67jH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzKwUq67jH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzKwUq67jH .dropdown-item.active,
.cid-rzKwUq67jH .dropdown-item:active {
  background-color: transparent;
}
.cid-rzKwUq67jH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzKwUq67jH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzKwUq67jH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzKwUq67jH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rzKwUq67jH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzKwUq67jH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzKwUq67jH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rzKwUq67jH .navbar-buttons {
  text-align: center;
}
.cid-rzKwUq67jH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rzKwUq67jH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzKwUq67jH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzKwUq67jH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzKwUq67jH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzKwUq67jH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzKwUq67jH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzKwUq67jH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzKwUq67jH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzKwUq67jH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzKwUq67jH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzKwUq67jH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rzKwUq67jH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzKwUq67jH .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rzKwUq67jH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzKwUq67jH .navbar {
    height: 77px;
  }
  .cid-rzKwUq67jH .navbar.opened {
    height: auto;
  }
  .cid-rzKwUq67jH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzKwUtqPGa {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzKwUtqPGa p {
  color: #767676;
}
.cid-rzKwUtqPGa .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rzKwUtqPGa .main {
  flex-direction: row-reverse;
}
.cid-rzKwUtqPGa .row-element,
.cid-rzKwUtqPGa .image-element {
  padding: 0;
}
.cid-rzKwUtqPGa .image-element {
  display: flex;
  justify-content: center;
}
.cid-rzKwUtqPGa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rzKwUtqPGa .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzKwUtqPGa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rzKwUtqPGa .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rzKwUtqPGa .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rzKwUtqPGa .text-content {
    padding: 2rem 1rem;
  }
  .cid-rzKwUtqPGa .underline .line {
    height: 2px;
  }
  .cid-rzKwUtqPGa .mbr-title,
  .cid-rzKwUtqPGa .underline,
  .cid-rzKwUtqPGa .mbr-text,
  .cid-rzKwUtqPGa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rzKwUtqPGa .mbr-title,
.cid-rzKwUtqPGa .underline {
  color: #84510e;
}
.cid-rzKwUvFOYP {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzKwUvFOYP .container-fluid {
  padding: 0 3rem;
}
.cid-rzKwUvFOYP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzKwUvFOYP .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rzKwUvFOYP .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rzKwUvFOYP .card .card-wrapper {
  height: 1%;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rzKwUvFOYP .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rzKwUvFOYP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rzQC8UxmwX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzQC8UxmwX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rzQC8UxmwX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rzQC8UxmwX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rzQC8UxmwX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rzQC8UxmwX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rzQC8UxmwX .icon-focus {
  display: none;
}
.cid-rzQC8UxmwX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rzQC8UxmwX ul {
  font-size: 0;
}
.cid-rzQC8UxmwX .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rzQC8UxmwX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rzQC8UxmwX .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rzQC8UxmwX .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rzQC8UxmwX .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rzQC8UxmwX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rzQC8UxmwX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzQC8UxmwX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzQC8UxmwX .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rzQC8UxmwX .btn:hover {
  background: transparent !important;
}
.cid-rzQC8UxmwX .btn:hover:before {
  background: transparent !important;
}
.cid-rzQC8UxmwX .btn:before {
  background-color: transparent !important;
}
.cid-rzQC8UxmwX .btn:focus {
  box-shadow: none;
}
.cid-rJx86WS9mU {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx86WS9mU .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx86WS9mU .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx86WS9mU .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx86WS9mU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx86WS9mU .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx86WS9mU .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx86WS9mU .card .panel-body {
  color: #767676;
}
.cid-rJx86WS9mU H2 {
  color: #84510e;
}
.cid-rJx86WS9mU H4 {
  color: #5b686b;
}
.cid-rzKwUGLODP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzKwUGLODP .title {
  margin-bottom: 2rem;
}
.cid-rzKwUGLODP .mbr-section-subtitle {
  color: #767676;
}
.cid-rzKwUGLODP a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rzKwUGLODP a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rzKwUGLODP .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rzKwUGLODP .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rzKwUGLODP H2 {
  color: #84510e;
}
.cid-rzKwUKeDqc {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rzKwUKeDqc .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rzKwUKeDqc .social-list a:focus {
  text-decoration: none;
}
.cid-rzKwUKeDqc H2 {
  color: #ffffff;
}
.cid-rzKwUOWoLZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzKwUOWoLZ .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rzKwUOWoLZ .content {
    text-align: center;
  }
  .cid-rzKwUOWoLZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rzKwUOWoLZ .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rzKwUOWoLZ .input-group-btn {
  display: inline-block;
}
.cid-rzKwUOWoLZ .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rzKwUOWoLZ .img-logo img {
  height: 6rem;
}
.cid-rzKwUOWoLZ [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rzKwUOWoLZ [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rzKwUOWoLZ .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rzKwUOWoLZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rzKwUOWoLZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rzKwUOWoLZ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rzKwUOWoLZ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rzKwUOWoLZ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rzKwUOWoLZ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rzKwUOWoLZ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rzKwUOWoLZ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rzKwUOWoLZ form .input-group input.form-control,
.cid-rzKwUOWoLZ form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rzKwUOWoLZ .form-inline {
  justify-content: center;
}
.cid-rzKwUOWoLZ .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rzKwUOWoLZ .foot-logo {
    text-align: center !important;
  }
  .cid-rzKwUOWoLZ .foot-title {
    text-align: center !important;
  }
  .cid-rzKwUOWoLZ .mbr-text {
    text-align: center !important;
  }
}
.cid-rzKwURDg6s {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rzKwURDg6s .container-fluid {
  padding: 0 3rem;
}
.cid-rzKwURDg6s ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rzKwURDg6s ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rzKwURDg6s ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rzKwURDg6s ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rzKwURDg6s .container-fluid {
    padding: 0 1rem;
  }
  .cid-rzKwURDg6s .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rzKwURDg6s .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzKwURDg6s .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzKwUV40Hl {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rzKwUV40Hl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rzKwUV40Hl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rzKwUV40Hl .btn-social {
  border: none !important;
}
.cid-rzKwUV40Hl [class^="socicon-"]:before,
.cid-rzKwUV40Hl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rzKwUV40Hl .btn {
    font-size: 20px !important;
  }
}
.cid-rzKwUV40Hl .mbr-section-title {
  color: #ffffff;
}
.cid-rzVM9EaZwJ .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;
  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-rzVM9EaZwJ .nav-item:focus,
.cid-rzVM9EaZwJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzVM9EaZwJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rzVM9EaZwJ .nav-item .nav-link {
    position: relative;
  }
  .cid-rzVM9EaZwJ .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rzVM9EaZwJ .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rzVM9EaZwJ .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzVM9EaZwJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rzVM9EaZwJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzVM9EaZwJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzVM9EaZwJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rzVM9EaZwJ .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rzVM9EaZwJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rzVM9EaZwJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzVM9EaZwJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzVM9EaZwJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rzVM9EaZwJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzVM9EaZwJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzVM9EaZwJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzVM9EaZwJ .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-rzVM9EaZwJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzVM9EaZwJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rzVM9EaZwJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzVM9EaZwJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzVM9EaZwJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzVM9EaZwJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzVM9EaZwJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzVM9EaZwJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzVM9EaZwJ .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-rzVM9EaZwJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzVM9EaZwJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzVM9EaZwJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rzVM9EaZwJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzVM9EaZwJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rzVM9EaZwJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzVM9EaZwJ .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rzVM9EaZwJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzVM9EaZwJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzVM9EaZwJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzVM9EaZwJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzVM9EaZwJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzVM9EaZwJ .dropdown-item.active,
.cid-rzVM9EaZwJ .dropdown-item:active {
  background-color: transparent;
}
.cid-rzVM9EaZwJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzVM9EaZwJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzVM9EaZwJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzVM9EaZwJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rzVM9EaZwJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzVM9EaZwJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzVM9EaZwJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rzVM9EaZwJ .navbar-buttons {
  text-align: center;
}
.cid-rzVM9EaZwJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rzVM9EaZwJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzVM9EaZwJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzVM9EaZwJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzVM9EaZwJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzVM9EaZwJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzVM9EaZwJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzVM9EaZwJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzVM9EaZwJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzVM9EaZwJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzVM9EaZwJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzVM9EaZwJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rzVM9EaZwJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzVM9EaZwJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rzVM9EaZwJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzVM9EaZwJ .navbar {
    height: 77px;
  }
  .cid-rzVM9EaZwJ .navbar.opened {
    height: auto;
  }
  .cid-rzVM9EaZwJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzVM9IA5mr {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzVM9IA5mr p {
  color: #767676;
}
.cid-rzVM9IA5mr .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rzVM9IA5mr .main {
  flex-direction: row-reverse;
}
.cid-rzVM9IA5mr .row-element,
.cid-rzVM9IA5mr .image-element {
  padding: 0;
}
.cid-rzVM9IA5mr .image-element {
  display: flex;
  justify-content: center;
}
.cid-rzVM9IA5mr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rzVM9IA5mr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzVM9IA5mr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rzVM9IA5mr .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rzVM9IA5mr .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rzVM9IA5mr .text-content {
    padding: 2rem 1rem;
  }
  .cid-rzVM9IA5mr .underline .line {
    height: 2px;
  }
  .cid-rzVM9IA5mr .mbr-title,
  .cid-rzVM9IA5mr .underline,
  .cid-rzVM9IA5mr .mbr-text,
  .cid-rzVM9IA5mr .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rzVM9IA5mr .mbr-title,
.cid-rzVM9IA5mr .underline {
  color: #84510e;
}
.cid-rzVM9LeDZB {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzVM9LeDZB .container-fluid {
  padding: 0 3rem;
}
.cid-rzVM9LeDZB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzVM9LeDZB .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rzVM9LeDZB .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rzVM9LeDZB .card .card-wrapper {
  height: 1%;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rzVM9LeDZB .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rzVM9LeDZB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rzVM9OSFUs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzVM9OSFUs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rzVM9OSFUs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rzVM9OSFUs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rzVM9OSFUs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rzVM9OSFUs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rzVM9OSFUs .icon-focus {
  display: none;
}
.cid-rzVM9OSFUs .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rzVM9OSFUs ul {
  font-size: 0;
}
.cid-rzVM9OSFUs .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rzVM9OSFUs .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rzVM9OSFUs .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rzVM9OSFUs .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rzVM9OSFUs .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rzVM9OSFUs .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rzVM9OSFUs .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzVM9OSFUs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzVM9OSFUs .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rzVM9OSFUs .btn:hover {
  background: transparent !important;
}
.cid-rzVM9OSFUs .btn:hover:before {
  background: transparent !important;
}
.cid-rzVM9OSFUs .btn:before {
  background-color: transparent !important;
}
.cid-rzVM9OSFUs .btn:focus {
  box-shadow: none;
}
.cid-rJx8QmYSWP {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8QmYSWP .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8QmYSWP .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8QmYSWP .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8QmYSWP .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8QmYSWP .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8QmYSWP .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8QmYSWP .card .panel-body {
  color: #767676;
}
.cid-rJx8QmYSWP H2 {
  color: #84510e;
}
.cid-rJx8QmYSWP H4 {
  color: #5b686b;
}
.cid-rzVM9UD0Bi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzVM9UD0Bi .title {
  margin-bottom: 2rem;
}
.cid-rzVM9UD0Bi .mbr-section-subtitle {
  color: #767676;
}
.cid-rzVM9UD0Bi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rzVM9UD0Bi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rzVM9UD0Bi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rzVM9UD0Bi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rzVM9UD0Bi H2 {
  color: #84510e;
}
.cid-rzVM9Yo51S {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rzVM9Yo51S .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rzVM9Yo51S .social-list a:focus {
  text-decoration: none;
}
.cid-rzVM9Yo51S H2 {
  color: #ffffff;
}
.cid-rzVMa28kf7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzVMa28kf7 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rzVMa28kf7 .content {
    text-align: center;
  }
  .cid-rzVMa28kf7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rzVMa28kf7 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rzVMa28kf7 .input-group-btn {
  display: inline-block;
}
.cid-rzVMa28kf7 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rzVMa28kf7 .img-logo img {
  height: 6rem;
}
.cid-rzVMa28kf7 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rzVMa28kf7 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rzVMa28kf7 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rzVMa28kf7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rzVMa28kf7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rzVMa28kf7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rzVMa28kf7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rzVMa28kf7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rzVMa28kf7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rzVMa28kf7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rzVMa28kf7 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rzVMa28kf7 form .input-group input.form-control,
.cid-rzVMa28kf7 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rzVMa28kf7 .form-inline {
  justify-content: center;
}
.cid-rzVMa28kf7 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rzVMa28kf7 .foot-logo {
    text-align: center !important;
  }
  .cid-rzVMa28kf7 .foot-title {
    text-align: center !important;
  }
  .cid-rzVMa28kf7 .mbr-text {
    text-align: center !important;
  }
}
.cid-rzVMa6exZk {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rzVMa6exZk .container-fluid {
  padding: 0 3rem;
}
.cid-rzVMa6exZk ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rzVMa6exZk ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rzVMa6exZk ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rzVMa6exZk ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rzVMa6exZk .container-fluid {
    padding: 0 1rem;
  }
  .cid-rzVMa6exZk .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rzVMa6exZk .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rzVMa6exZk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rzVMaby8CX {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rzVMaby8CX .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rzVMaby8CX .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rzVMaby8CX .btn-social {
  border: none !important;
}
.cid-rzVMaby8CX [class^="socicon-"]:before,
.cid-rzVMaby8CX [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rzVMaby8CX .btn {
    font-size: 20px !important;
  }
}
.cid-rzVMaby8CX .mbr-section-title {
  color: #ffffff;
}
.cid-rGV0G21Z0S .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;
  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-rGV0G21Z0S .nav-item:focus,
.cid-rGV0G21Z0S .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rGV0G21Z0S .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rGV0G21Z0S .nav-item .nav-link {
    position: relative;
  }
  .cid-rGV0G21Z0S .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rGV0G21Z0S .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rGV0G21Z0S .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGV0G21Z0S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rGV0G21Z0S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGV0G21Z0S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGV0G21Z0S .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rGV0G21Z0S .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rGV0G21Z0S .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGV0G21Z0S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGV0G21Z0S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGV0G21Z0S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rGV0G21Z0S .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGV0G21Z0S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGV0G21Z0S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGV0G21Z0S .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-rGV0G21Z0S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGV0G21Z0S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGV0G21Z0S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGV0G21Z0S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGV0G21Z0S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGV0G21Z0S .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGV0G21Z0S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGV0G21Z0S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGV0G21Z0S .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-rGV0G21Z0S .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGV0G21Z0S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGV0G21Z0S .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGV0G21Z0S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGV0G21Z0S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rGV0G21Z0S .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGV0G21Z0S .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rGV0G21Z0S .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGV0G21Z0S .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGV0G21Z0S .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGV0G21Z0S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGV0G21Z0S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGV0G21Z0S .dropdown-item.active,
.cid-rGV0G21Z0S .dropdown-item:active {
  background-color: transparent;
}
.cid-rGV0G21Z0S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGV0G21Z0S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGV0G21Z0S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGV0G21Z0S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rGV0G21Z0S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGV0G21Z0S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGV0G21Z0S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rGV0G21Z0S .navbar-buttons {
  text-align: center;
}
.cid-rGV0G21Z0S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rGV0G21Z0S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rGV0G21Z0S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGV0G21Z0S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGV0G21Z0S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGV0G21Z0S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGV0G21Z0S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGV0G21Z0S nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGV0G21Z0S nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGV0G21Z0S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGV0G21Z0S .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rGV0G21Z0S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rGV0G21Z0S .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGV0G21Z0S .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rGV0G21Z0S .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGV0G21Z0S .navbar {
    height: 77px;
  }
  .cid-rGV0G21Z0S .navbar.opened {
    height: auto;
  }
  .cid-rGV0G21Z0S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGV0G3lt7O {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rGV0G3lt7O p {
  color: #767676;
}
.cid-rGV0G3lt7O .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rGV0G3lt7O .main {
  flex-direction: row-reverse;
}
.cid-rGV0G3lt7O .row-element,
.cid-rGV0G3lt7O .image-element {
  padding: 0;
}
.cid-rGV0G3lt7O .image-element {
  display: flex;
  justify-content: center;
}
.cid-rGV0G3lt7O .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rGV0G3lt7O .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGV0G3lt7O .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rGV0G3lt7O .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rGV0G3lt7O .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rGV0G3lt7O .text-content {
    padding: 2rem 1rem;
  }
  .cid-rGV0G3lt7O .underline .line {
    height: 2px;
  }
  .cid-rGV0G3lt7O .mbr-title,
  .cid-rGV0G3lt7O .underline,
  .cid-rGV0G3lt7O .mbr-text,
  .cid-rGV0G3lt7O .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rGV0G3lt7O .mbr-title,
.cid-rGV0G3lt7O .underline {
  color: #84510e;
}
.cid-rGV3ASDBHz {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGV3ASDBHz .container-fluid {
  padding: 0 3rem;
}
.cid-rGV3ASDBHz .media-container-column {
  padding: 0 2rem;
}
.cid-rGV3ASDBHz .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-rGV3ASDBHz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGV3ASDBHz .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGV31VgDvz {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rGVb9pUZz5 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGVb9pUZz5 .container-fluid {
  padding: 0 3rem;
}
.cid-rGVb9pUZz5 .media-container-column {
  padding: 0 2rem;
}
.cid-rGVb9pUZz5 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-rGVb9pUZz5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGVb9pUZz5 .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGVbaGnjPP {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rGV6Ds9tfm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rGV6Ds9tfm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rGV6Ds9tfm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rGV6Ds9tfm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rGV6Ds9tfm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rGV6Ds9tfm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rGV6Ds9tfm .icon-focus {
  display: none;
}
.cid-rGV6Ds9tfm .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rGV6Ds9tfm ul {
  font-size: 0;
}
.cid-rGV6Ds9tfm .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rGV6Ds9tfm .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rGV6Ds9tfm .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rGV6Ds9tfm .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rGV6Ds9tfm .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rGV6Ds9tfm .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rGV6Ds9tfm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGV6Ds9tfm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rGV6Ds9tfm .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rGV6Ds9tfm .btn:hover {
  background: transparent !important;
}
.cid-rGV6Ds9tfm .btn:hover:before {
  background: transparent !important;
}
.cid-rGV6Ds9tfm .btn:before {
  background-color: transparent !important;
}
.cid-rGV6Ds9tfm .btn:focus {
  box-shadow: none;
}
.cid-rJx8kh6Lm8 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8kh6Lm8 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8kh6Lm8 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8kh6Lm8 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8kh6Lm8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8kh6Lm8 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8kh6Lm8 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8kh6Lm8 .card .panel-body {
  color: #767676;
}
.cid-rJx8kh6Lm8 H2 {
  color: #84510e;
}
.cid-rJx8kh6Lm8 H4 {
  color: #5b686b;
}
.cid-rGV0GdAQBf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rGV0GdAQBf .title {
  margin-bottom: 2rem;
}
.cid-rGV0GdAQBf .mbr-section-subtitle {
  color: #767676;
}
.cid-rGV0GdAQBf a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rGV0GdAQBf a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rGV0GdAQBf .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rGV0GdAQBf .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rGV0GdAQBf H2 {
  color: #84510e;
}
.cid-rGV0GfFe3L {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rGV0GfFe3L .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rGV0GfFe3L .social-list a:focus {
  text-decoration: none;
}
.cid-rGV0GfFe3L H2 {
  color: #ffffff;
}
.cid-rGV0GiKyNu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGV0GiKyNu .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rGV0GiKyNu .content {
    text-align: center;
  }
  .cid-rGV0GiKyNu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rGV0GiKyNu .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rGV0GiKyNu .input-group-btn {
  display: inline-block;
}
.cid-rGV0GiKyNu .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rGV0GiKyNu .img-logo img {
  height: 6rem;
}
.cid-rGV0GiKyNu [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rGV0GiKyNu [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rGV0GiKyNu .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rGV0GiKyNu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rGV0GiKyNu .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rGV0GiKyNu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rGV0GiKyNu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rGV0GiKyNu .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rGV0GiKyNu .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rGV0GiKyNu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rGV0GiKyNu .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rGV0GiKyNu form .input-group input.form-control,
.cid-rGV0GiKyNu form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rGV0GiKyNu .form-inline {
  justify-content: center;
}
.cid-rGV0GiKyNu .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rGV0GiKyNu .foot-logo {
    text-align: center !important;
  }
  .cid-rGV0GiKyNu .foot-title {
    text-align: center !important;
  }
  .cid-rGV0GiKyNu .mbr-text {
    text-align: center !important;
  }
}
.cid-rGV0Gm2jdb {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGV0Gm2jdb .container-fluid {
  padding: 0 3rem;
}
.cid-rGV0Gm2jdb ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rGV0Gm2jdb ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rGV0Gm2jdb ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rGV0Gm2jdb ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rGV0Gm2jdb .container-fluid {
    padding: 0 1rem;
  }
  .cid-rGV0Gm2jdb .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rGV0Gm2jdb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGV0Gm2jdb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rGV0Go2gwe {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rGV0Go2gwe .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rGV0Go2gwe .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rGV0Go2gwe .btn-social {
  border: none !important;
}
.cid-rGV0Go2gwe [class^="socicon-"]:before,
.cid-rGV0Go2gwe [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rGV0Go2gwe .btn {
    font-size: 20px !important;
  }
}
.cid-rGV0Go2gwe .mbr-section-title {
  color: #ffffff;
}
.cid-rGZ03cbfCc .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;
  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-rGZ03cbfCc .nav-item:focus,
.cid-rGZ03cbfCc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rGZ03cbfCc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rGZ03cbfCc .nav-item .nav-link {
    position: relative;
  }
  .cid-rGZ03cbfCc .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rGZ03cbfCc .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rGZ03cbfCc .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGZ03cbfCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rGZ03cbfCc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGZ03cbfCc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGZ03cbfCc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rGZ03cbfCc .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rGZ03cbfCc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGZ03cbfCc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGZ03cbfCc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGZ03cbfCc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rGZ03cbfCc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGZ03cbfCc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGZ03cbfCc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGZ03cbfCc .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-rGZ03cbfCc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGZ03cbfCc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGZ03cbfCc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGZ03cbfCc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGZ03cbfCc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGZ03cbfCc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGZ03cbfCc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGZ03cbfCc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGZ03cbfCc .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-rGZ03cbfCc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGZ03cbfCc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGZ03cbfCc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGZ03cbfCc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGZ03cbfCc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rGZ03cbfCc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGZ03cbfCc .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rGZ03cbfCc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGZ03cbfCc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGZ03cbfCc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGZ03cbfCc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGZ03cbfCc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGZ03cbfCc .dropdown-item.active,
.cid-rGZ03cbfCc .dropdown-item:active {
  background-color: transparent;
}
.cid-rGZ03cbfCc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGZ03cbfCc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGZ03cbfCc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGZ03cbfCc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rGZ03cbfCc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGZ03cbfCc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGZ03cbfCc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rGZ03cbfCc .navbar-buttons {
  text-align: center;
}
.cid-rGZ03cbfCc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rGZ03cbfCc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rGZ03cbfCc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGZ03cbfCc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGZ03cbfCc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGZ03cbfCc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGZ03cbfCc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGZ03cbfCc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGZ03cbfCc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGZ03cbfCc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGZ03cbfCc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rGZ03cbfCc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rGZ03cbfCc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGZ03cbfCc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rGZ03cbfCc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGZ03cbfCc .navbar {
    height: 77px;
  }
  .cid-rGZ03cbfCc .navbar.opened {
    height: auto;
  }
  .cid-rGZ03cbfCc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGZ3nitSdb {
  overflow-x: hidden !important;
}
.cid-rGZ3nitSdb .container-fluid {
  padding: 0 3rem;
}
.cid-rGZ3nitSdb .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  animation-duration: 30s;
  -webkit-animation-duration: 30s !important;
  background-image: url("../../../assets/images/collage-mesas-de-dulces-2000x1088.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.cid-rGZ3nitSdb .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-rGZ3nitSdb .mbr-overlay {
  z-index: 1;
}
.cid-rGZ3nitSdb .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-rGZ3nitSdb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZ3nitSdb .mbr-section-title {
  color: #84510e;
  text-align: center;
}
.cid-rGZ3nitSdb .mbr-section-subtitle,
.cid-rGZ3nitSdb .mbr-section-btn {
  text-align: center;
}
.cid-rGZrTBSGfz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGZrTBSGfz .container-fluid {
  padding: 0 3rem;
}
.cid-rGZrTBSGfz .media-container-column {
  padding: 0 2rem;
}
.cid-rGZrTBSGfz .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rGZrTBSGfz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZmdOlWgH {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGZmdOlWgH .counter-container {
  color: #767676;
}
.cid-rGZmdOlWgH .counter-container ul {
  margin-bottom: 0;
}
.cid-rGZmdOlWgH .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rGZmdOlWgH .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: #000000;
  background: #28d4e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28d4e2, #44fff1);
  content: '✓';
}
.cid-rGZvcLUuxL {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rGZvcLUuxL .container-fluid {
  padding: 0 3rem;
}
.cid-rGZvcLUuxL .media-container-column {
  padding: 0 2rem;
}
.cid-rGZvcLUuxL .mbr-section-title {
  display: inline-block;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rGZvcLUuxL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZvcLUuxL .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGZKUPdBlU {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGZKUPdBlU .container-fluid {
  padding: 0 3rem;
}
.cid-rGZKUPdBlU .media-container-column {
  padding: 0 2rem;
}
.cid-rGZKUPdBlU .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-rGZKUPdBlU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZKUPdBlU .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGZKWVyws3 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rGZ03fEfUk {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGZ03fEfUk .container-fluid {
  padding: 0 3rem;
}
.cid-rGZ03fEfUk .media-container-column {
  padding: 0 2rem;
}
.cid-rGZ03fEfUk .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-rGZ03fEfUk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZ03fEfUk .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGZ03hqBM1 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rGZ03iqTsL {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGZ03iqTsL .container-fluid {
  padding: 0 3rem;
}
.cid-rGZ03iqTsL .media-container-column {
  padding: 0 2rem;
}
.cid-rGZ03iqTsL .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
}
@media (max-width: 767px) {
  .cid-rGZ03iqTsL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGZ03iqTsL .mbr-section-subtitle {
  color: #84510e;
}
.cid-rGZ03jPHiY {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rGZKyl2sNk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rGZKyl2sNk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rGZKyl2sNk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rGZKyl2sNk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rGZKyl2sNk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rGZKyl2sNk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rGZKyl2sNk .icon-focus {
  display: none;
}
.cid-rGZKyl2sNk .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rGZKyl2sNk ul {
  font-size: 0;
}
.cid-rGZKyl2sNk .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rGZKyl2sNk .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rGZKyl2sNk .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rGZKyl2sNk .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rGZKyl2sNk .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rGZKyl2sNk .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rGZKyl2sNk .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGZKyl2sNk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rGZKyl2sNk .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rGZKyl2sNk .btn:hover {
  background: transparent !important;
}
.cid-rGZKyl2sNk .btn:hover:before {
  background: transparent !important;
}
.cid-rGZKyl2sNk .btn:before {
  background-color: transparent !important;
}
.cid-rGZKyl2sNk .btn:focus {
  box-shadow: none;
}
.cid-rJx8rtjwyg {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx8rtjwyg .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx8rtjwyg .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx8rtjwyg .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx8rtjwyg .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx8rtjwyg .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx8rtjwyg .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx8rtjwyg .card .panel-body {
  color: #767676;
}
.cid-rJx8rtjwyg H2 {
  color: #84510e;
}
.cid-rJx8rtjwyg H4 {
  color: #5b686b;
}
.cid-rGZ03tAmYg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rGZ03tAmYg .title {
  margin-bottom: 2rem;
}
.cid-rGZ03tAmYg .mbr-section-subtitle {
  color: #767676;
}
.cid-rGZ03tAmYg a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rGZ03tAmYg a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rGZ03tAmYg .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rGZ03tAmYg .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rGZ03tAmYg H2 {
  color: #84510e;
}
.cid-rGZ03vGmuT {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rGZ03vGmuT .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rGZ03vGmuT .social-list a:focus {
  text-decoration: none;
}
.cid-rGZ03vGmuT H2 {
  color: #ffffff;
}
.cid-rGZ03yPcAf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGZ03yPcAf .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rGZ03yPcAf .content {
    text-align: center;
  }
  .cid-rGZ03yPcAf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rGZ03yPcAf .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rGZ03yPcAf .input-group-btn {
  display: inline-block;
}
.cid-rGZ03yPcAf .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rGZ03yPcAf .img-logo img {
  height: 6rem;
}
.cid-rGZ03yPcAf [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rGZ03yPcAf [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rGZ03yPcAf .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rGZ03yPcAf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rGZ03yPcAf .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rGZ03yPcAf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rGZ03yPcAf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rGZ03yPcAf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rGZ03yPcAf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rGZ03yPcAf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rGZ03yPcAf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rGZ03yPcAf form .input-group input.form-control,
.cid-rGZ03yPcAf form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rGZ03yPcAf .form-inline {
  justify-content: center;
}
.cid-rGZ03yPcAf .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rGZ03yPcAf .foot-logo {
    text-align: center !important;
  }
  .cid-rGZ03yPcAf .foot-title {
    text-align: center !important;
  }
  .cid-rGZ03yPcAf .mbr-text {
    text-align: center !important;
  }
}
.cid-rGZ03BHVoZ {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGZ03BHVoZ .container-fluid {
  padding: 0 3rem;
}
.cid-rGZ03BHVoZ ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rGZ03BHVoZ ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rGZ03BHVoZ ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rGZ03BHVoZ ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rGZ03BHVoZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rGZ03BHVoZ .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rGZ03BHVoZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rGZ03BHVoZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rGZ03EMTO3 {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rGZ03EMTO3 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rGZ03EMTO3 .btn-social {
  border: none !important;
}
.cid-rGZ03EMTO3 [class^="socicon-"]:before,
.cid-rGZ03EMTO3 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rGZ03EMTO3 .btn {
    font-size: 20px !important;
  }
}
.cid-rGZ03EMTO3 .mbr-section-title {
  color: #ffffff;
}
.cid-rJD8LbcV89 .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;
  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-rJD8LbcV89 .nav-item:focus,
.cid-rJD8LbcV89 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJD8LbcV89 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rJD8LbcV89 .nav-item .nav-link {
    position: relative;
  }
  .cid-rJD8LbcV89 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rJD8LbcV89 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rJD8LbcV89 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJD8LbcV89 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rJD8LbcV89 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJD8LbcV89 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJD8LbcV89 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rJD8LbcV89 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rJD8LbcV89 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rJD8LbcV89 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJD8LbcV89 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJD8LbcV89 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rJD8LbcV89 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJD8LbcV89 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJD8LbcV89 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rJD8LbcV89 .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-rJD8LbcV89 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJD8LbcV89 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rJD8LbcV89 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJD8LbcV89 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJD8LbcV89 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJD8LbcV89 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJD8LbcV89 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJD8LbcV89 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rJD8LbcV89 .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-rJD8LbcV89 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rJD8LbcV89 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJD8LbcV89 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rJD8LbcV89 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJD8LbcV89 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rJD8LbcV89 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJD8LbcV89 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rJD8LbcV89 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rJD8LbcV89 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJD8LbcV89 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJD8LbcV89 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJD8LbcV89 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJD8LbcV89 .dropdown-item.active,
.cid-rJD8LbcV89 .dropdown-item:active {
  background-color: transparent;
}
.cid-rJD8LbcV89 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rJD8LbcV89 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJD8LbcV89 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJD8LbcV89 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rJD8LbcV89 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJD8LbcV89 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJD8LbcV89 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rJD8LbcV89 .navbar-buttons {
  text-align: center;
}
.cid-rJD8LbcV89 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rJD8LbcV89 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rJD8LbcV89 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJD8LbcV89 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJD8LbcV89 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJD8LbcV89 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJD8LbcV89 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJD8LbcV89 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJD8LbcV89 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJD8LbcV89 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJD8LbcV89 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJD8LbcV89 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rJD8LbcV89 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rJD8LbcV89 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rJD8LbcV89 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJD8LbcV89 .navbar {
    height: 77px;
  }
  .cid-rJD8LbcV89 .navbar.opened {
    height: auto;
  }
  .cid-rJD8LbcV89 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJD8LcK9vh {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJD8LcK9vh p {
  color: #767676;
}
.cid-rJD8LcK9vh .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rJD8LcK9vh .main {
  flex-direction: row-reverse;
}
.cid-rJD8LcK9vh .row-element,
.cid-rJD8LcK9vh .image-element {
  padding: 0;
}
.cid-rJD8LcK9vh .image-element {
  display: flex;
  justify-content: center;
}
.cid-rJD8LcK9vh .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rJD8LcK9vh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rJD8LcK9vh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rJD8LcK9vh .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rJD8LcK9vh .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rJD8LcK9vh .text-content {
    padding: 2rem 1rem;
  }
  .cid-rJD8LcK9vh .underline .line {
    height: 2px;
  }
  .cid-rJD8LcK9vh .mbr-title,
  .cid-rJD8LcK9vh .underline,
  .cid-rJD8LcK9vh .mbr-text,
  .cid-rJD8LcK9vh .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rJD8LcK9vh .mbr-title,
.cid-rJD8LcK9vh .underline {
  color: #84510e;
}
.cid-rJD8Lf0I4V {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJD8Lf0I4V .container-fluid {
  padding: 0 3rem;
}
.cid-rJD8Lf0I4V .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJD8Lf0I4V .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rJD8Lf0I4V .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rJD8Lf0I4V .card .card-wrapper {
  height: 1%;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rJD8Lf0I4V .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rJD8Lf0I4V .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rJPvaONqGV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJPvaONqGV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rJPvaONqGV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rJPvaONqGV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rJPvaONqGV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rJPvaONqGV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rJPvaONqGV .icon-focus {
  display: none;
}
.cid-rJPvaONqGV .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rJPvaONqGV ul {
  font-size: 0;
}
.cid-rJPvaONqGV .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rJPvaONqGV .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rJPvaONqGV .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rJPvaONqGV .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rJPvaONqGV .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rJPvaONqGV .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rJPvaONqGV .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rJPvaONqGV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJPvaONqGV .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rJPvaONqGV .btn:hover {
  background: transparent !important;
}
.cid-rJPvaONqGV .btn:hover:before {
  background: transparent !important;
}
.cid-rJPvaONqGV .btn:before {
  background-color: transparent !important;
}
.cid-rJPvaONqGV .btn:focus {
  box-shadow: none;
}
.cid-rJD8LlXahl {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJD8LlXahl .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJD8LlXahl .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJD8LlXahl .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJD8LlXahl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJD8LlXahl .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJD8LlXahl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJD8LlXahl .card .panel-body {
  color: #767676;
}
.cid-rJD8LlXahl H2 {
  color: #84510e;
}
.cid-rJD8LlXahl H4 {
  color: #5b686b;
}
.cid-rJD8LnR5ZG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJD8LnR5ZG .title {
  margin-bottom: 2rem;
}
.cid-rJD8LnR5ZG .mbr-section-subtitle {
  color: #767676;
}
.cid-rJD8LnR5ZG a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rJD8LnR5ZG a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rJD8LnR5ZG .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rJD8LnR5ZG .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rJD8LnR5ZG H2 {
  color: #84510e;
}
.cid-rJD8LpZLQT {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rJD8LpZLQT .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rJD8LpZLQT .social-list a:focus {
  text-decoration: none;
}
.cid-rJD8LpZLQT H2 {
  color: #ffffff;
}
.cid-rJD8Lt72Np {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJD8Lt72Np .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rJD8Lt72Np .content {
    text-align: center;
  }
  .cid-rJD8Lt72Np .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJD8Lt72Np .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rJD8Lt72Np .input-group-btn {
  display: inline-block;
}
.cid-rJD8Lt72Np .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rJD8Lt72Np .img-logo img {
  height: 6rem;
}
.cid-rJD8Lt72Np [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rJD8Lt72Np [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rJD8Lt72Np .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rJD8Lt72Np .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJD8Lt72Np .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rJD8Lt72Np .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rJD8Lt72Np .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJD8Lt72Np .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJD8Lt72Np .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJD8Lt72Np .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJD8Lt72Np .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rJD8Lt72Np form .input-group input.form-control,
.cid-rJD8Lt72Np form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rJD8Lt72Np .form-inline {
  justify-content: center;
}
.cid-rJD8Lt72Np .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rJD8Lt72Np .foot-logo {
    text-align: center !important;
  }
  .cid-rJD8Lt72Np .foot-title {
    text-align: center !important;
  }
  .cid-rJD8Lt72Np .mbr-text {
    text-align: center !important;
  }
}
.cid-rJD8LwyToJ {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJD8LwyToJ .container-fluid {
  padding: 0 3rem;
}
.cid-rJD8LwyToJ ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rJD8LwyToJ ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rJD8LwyToJ ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rJD8LwyToJ ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rJD8LwyToJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rJD8LwyToJ .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rJD8LwyToJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rJD8LwyToJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJD8LzLwKQ {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rJD8LzLwKQ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rJD8LzLwKQ .btn-social {
  border: none !important;
}
.cid-rJD8LzLwKQ [class^="socicon-"]:before,
.cid-rJD8LzLwKQ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rJD8LzLwKQ .btn {
    font-size: 20px !important;
  }
}
.cid-rJD8LzLwKQ .mbr-section-title {
  color: #ffffff;
}
.cid-rJPEkK303T .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;
  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-rJPEkK303T .nav-item:focus,
.cid-rJPEkK303T .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJPEkK303T .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rJPEkK303T .nav-item .nav-link {
    position: relative;
  }
  .cid-rJPEkK303T .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rJPEkK303T .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rJPEkK303T .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJPEkK303T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rJPEkK303T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJPEkK303T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJPEkK303T .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rJPEkK303T .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rJPEkK303T .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rJPEkK303T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJPEkK303T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJPEkK303T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rJPEkK303T .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJPEkK303T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJPEkK303T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rJPEkK303T .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-rJPEkK303T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJPEkK303T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rJPEkK303T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJPEkK303T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJPEkK303T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJPEkK303T .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJPEkK303T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJPEkK303T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rJPEkK303T .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-rJPEkK303T .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rJPEkK303T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJPEkK303T .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rJPEkK303T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJPEkK303T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rJPEkK303T .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJPEkK303T .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rJPEkK303T .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rJPEkK303T .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJPEkK303T .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJPEkK303T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJPEkK303T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJPEkK303T .dropdown-item.active,
.cid-rJPEkK303T .dropdown-item:active {
  background-color: transparent;
}
.cid-rJPEkK303T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rJPEkK303T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJPEkK303T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJPEkK303T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rJPEkK303T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJPEkK303T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJPEkK303T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rJPEkK303T .navbar-buttons {
  text-align: center;
}
.cid-rJPEkK303T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rJPEkK303T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rJPEkK303T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJPEkK303T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJPEkK303T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJPEkK303T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJPEkK303T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJPEkK303T nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJPEkK303T nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJPEkK303T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJPEkK303T .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJPEkK303T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rJPEkK303T .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rJPEkK303T .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rJPEkK303T .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJPEkK303T .navbar {
    height: 77px;
  }
  .cid-rJPEkK303T .navbar.opened {
    height: auto;
  }
  .cid-rJPEkK303T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJPEkLLhAd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJPEkLLhAd p {
  color: #767676;
}
.cid-rJPEkLLhAd .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rJPEkLLhAd .main {
  flex-direction: row-reverse;
}
.cid-rJPEkLLhAd .row-element,
.cid-rJPEkLLhAd .image-element {
  padding: 0;
}
.cid-rJPEkLLhAd .image-element {
  display: flex;
  justify-content: center;
}
.cid-rJPEkLLhAd .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rJPEkLLhAd .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rJPEkLLhAd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rJPEkLLhAd .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rJPEkLLhAd .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rJPEkLLhAd .text-content {
    padding: 2rem 1rem;
  }
  .cid-rJPEkLLhAd .underline .line {
    height: 2px;
  }
  .cid-rJPEkLLhAd .mbr-title,
  .cid-rJPEkLLhAd .underline,
  .cid-rJPEkLLhAd .mbr-text,
  .cid-rJPEkLLhAd .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rJPEkLLhAd .mbr-title,
.cid-rJPEkLLhAd .underline {
  color: #84510e;
}
.cid-rJPEkOmDBs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJPEkOmDBs .container-fluid {
  padding: 0 3rem;
}
.cid-rJPEkOmDBs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJPEkOmDBs .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rJPEkOmDBs .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rJPEkOmDBs .card .card-wrapper {
  height: 1%;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #55b993;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rJPEkOmDBs .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rJPEkOmDBs .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rJPKEF4w4I {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJPKEF4w4I .container-fluid {
  padding: 0 3rem;
}
.cid-rJPKEF4w4I .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJPKEF4w4I .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rJPKEF4w4I .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rJPKEF4w4I .card .card-wrapper {
  height: 1%;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #55b993;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rJPKEF4w4I .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rJPKEF4w4I .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rJPEl3k6uG {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJPEl3k6uG .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJPEl3k6uG .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJPEl3k6uG .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJPEl3k6uG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJPEl3k6uG .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJPEl3k6uG .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJPEl3k6uG .card .panel-body {
  color: #767676;
}
.cid-rJPEl3k6uG H2 {
  color: #84510e;
}
.cid-rJPEl3k6uG H4 {
  color: #5b686b;
}
.cid-rJPEl5oGlR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJPEl5oGlR .title {
  margin-bottom: 2rem;
}
.cid-rJPEl5oGlR .mbr-section-subtitle {
  color: #767676;
}
.cid-rJPEl5oGlR a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rJPEl5oGlR a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rJPEl5oGlR .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rJPEl5oGlR .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rJPEl5oGlR H2 {
  color: #84510e;
}
.cid-rJPEl7pR4j {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rJPEl7pR4j .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rJPEl7pR4j .social-list a:focus {
  text-decoration: none;
}
.cid-rJPEl7pR4j H2 {
  color: #ffffff;
}
.cid-rJPElbmSad {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJPElbmSad .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rJPElbmSad .content {
    text-align: center;
  }
  .cid-rJPElbmSad .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJPElbmSad .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rJPElbmSad .input-group-btn {
  display: inline-block;
}
.cid-rJPElbmSad .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rJPElbmSad .img-logo img {
  height: 6rem;
}
.cid-rJPElbmSad [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rJPElbmSad [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rJPElbmSad .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rJPElbmSad .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJPElbmSad .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rJPElbmSad .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rJPElbmSad .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJPElbmSad .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJPElbmSad .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJPElbmSad .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJPElbmSad .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rJPElbmSad form .input-group input.form-control,
.cid-rJPElbmSad form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rJPElbmSad .form-inline {
  justify-content: center;
}
.cid-rJPElbmSad .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rJPElbmSad .foot-logo {
    text-align: center !important;
  }
  .cid-rJPElbmSad .foot-title {
    text-align: center !important;
  }
  .cid-rJPElbmSad .mbr-text {
    text-align: center !important;
  }
}
.cid-rJPEleDe9K {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJPEleDe9K .container-fluid {
  padding: 0 3rem;
}
.cid-rJPEleDe9K ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rJPEleDe9K ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rJPEleDe9K ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rJPEleDe9K ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rJPEleDe9K .container-fluid {
    padding: 0 1rem;
  }
  .cid-rJPEleDe9K .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rJPEleDe9K .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rJPEleDe9K .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rJPElhSq9O {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rJPElhSq9O .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rJPElhSq9O .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rJPElhSq9O .btn-social {
  border: none !important;
}
.cid-rJPElhSq9O [class^="socicon-"]:before,
.cid-rJPElhSq9O [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rJPElhSq9O .btn {
    font-size: 20px !important;
  }
}
.cid-rJPElhSq9O .mbr-section-title {
  color: #ffffff;
}
.cid-rPuvL7uuBp .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;
  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-rPuvL7uuBp .nav-item:focus,
.cid-rPuvL7uuBp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPuvL7uuBp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rPuvL7uuBp .nav-item .nav-link {
    position: relative;
  }
  .cid-rPuvL7uuBp .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rPuvL7uuBp .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rPuvL7uuBp .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPuvL7uuBp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rPuvL7uuBp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPuvL7uuBp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPuvL7uuBp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rPuvL7uuBp .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rPuvL7uuBp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPuvL7uuBp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPuvL7uuBp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPuvL7uuBp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rPuvL7uuBp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPuvL7uuBp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPuvL7uuBp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPuvL7uuBp .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-rPuvL7uuBp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPuvL7uuBp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPuvL7uuBp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPuvL7uuBp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPuvL7uuBp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPuvL7uuBp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPuvL7uuBp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPuvL7uuBp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPuvL7uuBp .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-rPuvL7uuBp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPuvL7uuBp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPuvL7uuBp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPuvL7uuBp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPuvL7uuBp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rPuvL7uuBp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPuvL7uuBp .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rPuvL7uuBp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPuvL7uuBp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPuvL7uuBp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPuvL7uuBp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPuvL7uuBp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPuvL7uuBp .dropdown-item.active,
.cid-rPuvL7uuBp .dropdown-item:active {
  background-color: transparent;
}
.cid-rPuvL7uuBp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPuvL7uuBp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPuvL7uuBp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPuvL7uuBp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rPuvL7uuBp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPuvL7uuBp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPuvL7uuBp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rPuvL7uuBp .navbar-buttons {
  text-align: center;
}
.cid-rPuvL7uuBp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rPuvL7uuBp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rPuvL7uuBp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPuvL7uuBp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPuvL7uuBp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPuvL7uuBp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPuvL7uuBp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPuvL7uuBp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPuvL7uuBp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPuvL7uuBp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPuvL7uuBp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPuvL7uuBp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rPuvL7uuBp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPuvL7uuBp .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rPuvL7uuBp .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPuvL7uuBp .navbar {
    height: 77px;
  }
  .cid-rPuvL7uuBp .navbar.opened {
    height: auto;
  }
  .cid-rPuvL7uuBp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPuvL98j3s {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPuvL98j3s p {
  color: #767676;
}
.cid-rPuvL98j3s .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rPuvL98j3s .main {
  flex-direction: row-reverse;
}
.cid-rPuvL98j3s .row-element,
.cid-rPuvL98j3s .image-element {
  padding: 0;
}
.cid-rPuvL98j3s .image-element {
  display: flex;
  justify-content: center;
}
.cid-rPuvL98j3s .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rPuvL98j3s .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuvL98j3s .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rPuvL98j3s .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rPuvL98j3s .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rPuvL98j3s .text-content {
    padding: 2rem 1rem;
  }
  .cid-rPuvL98j3s .underline .line {
    height: 2px;
  }
  .cid-rPuvL98j3s .mbr-title,
  .cid-rPuvL98j3s .underline,
  .cid-rPuvL98j3s .mbr-text,
  .cid-rPuvL98j3s .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rPuvL98j3s .mbr-title,
.cid-rPuvL98j3s .underline {
  color: #84510e;
}
.cid-rPuvLayyk0 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuvLayyk0 .container-fluid {
  padding: 0 3rem;
}
.cid-rPuvLayyk0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuvLayyk0 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rPuvLayyk0 .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rPuvLayyk0 .card .card-wrapper {
  height: 1%;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rPuvLayyk0 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rPuvLayyk0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rPuGOym3ao {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuGOym3ao .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rPuGOym3ao .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rPuGOym3ao .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rPuGOym3ao .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rPuGOym3ao .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rPuGOym3ao .icon-focus {
  display: none;
}
.cid-rPuGOym3ao .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rPuGOym3ao ul {
  font-size: 0;
}
.cid-rPuGOym3ao .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rPuGOym3ao .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rPuGOym3ao .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rPuGOym3ao .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rPuGOym3ao .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rPuGOym3ao .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rPuGOym3ao .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuGOym3ao .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuGOym3ao .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rPuGOym3ao .btn:hover {
  background: transparent !important;
}
.cid-rPuGOym3ao .btn:hover:before {
  background: transparent !important;
}
.cid-rPuGOym3ao .btn:before {
  background-color: transparent !important;
}
.cid-rPuGOym3ao .btn:focus {
  box-shadow: none;
}
.cid-rPuvLiprLb {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rPuvLiprLb .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rPuvLiprLb .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rPuvLiprLb .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rPuvLiprLb .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rPuvLiprLb .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rPuvLiprLb .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rPuvLiprLb .card .panel-body {
  color: #767676;
}
.cid-rPuvLiprLb H2 {
  color: #84510e;
}
.cid-rPuvLiprLb H4 {
  color: #5b686b;
}
.cid-rPuvLkYqXD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuvLkYqXD .title {
  margin-bottom: 2rem;
}
.cid-rPuvLkYqXD .mbr-section-subtitle {
  color: #767676;
}
.cid-rPuvLkYqXD a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rPuvLkYqXD a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rPuvLkYqXD .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rPuvLkYqXD .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPuvLkYqXD H2 {
  color: #84510e;
}
.cid-rPuvLmHjOH {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rPuvLmHjOH .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rPuvLmHjOH .social-list a:focus {
  text-decoration: none;
}
.cid-rPuvLmHjOH H2 {
  color: #ffffff;
}
.cid-rPuvLpK9Tp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPuvLpK9Tp .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPuvLpK9Tp .content {
    text-align: center;
  }
  .cid-rPuvLpK9Tp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPuvLpK9Tp .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rPuvLpK9Tp .input-group-btn {
  display: inline-block;
}
.cid-rPuvLpK9Tp .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rPuvLpK9Tp .img-logo img {
  height: 6rem;
}
.cid-rPuvLpK9Tp [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rPuvLpK9Tp [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rPuvLpK9Tp .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPuvLpK9Tp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPuvLpK9Tp .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rPuvLpK9Tp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rPuvLpK9Tp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPuvLpK9Tp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPuvLpK9Tp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPuvLpK9Tp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPuvLpK9Tp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rPuvLpK9Tp form .input-group input.form-control,
.cid-rPuvLpK9Tp form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rPuvLpK9Tp .form-inline {
  justify-content: center;
}
.cid-rPuvLpK9Tp .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rPuvLpK9Tp .foot-logo {
    text-align: center !important;
  }
  .cid-rPuvLpK9Tp .foot-title {
    text-align: center !important;
  }
  .cid-rPuvLpK9Tp .mbr-text {
    text-align: center !important;
  }
}
.cid-rPuvLsSoP3 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPuvLsSoP3 .container-fluid {
  padding: 0 3rem;
}
.cid-rPuvLsSoP3 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rPuvLsSoP3 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rPuvLsSoP3 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rPuvLsSoP3 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rPuvLsSoP3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPuvLsSoP3 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rPuvLsSoP3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuvLsSoP3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuvLwq4rl {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rPuvLwq4rl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rPuvLwq4rl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rPuvLwq4rl .btn-social {
  border: none !important;
}
.cid-rPuvLwq4rl [class^="socicon-"]:before,
.cid-rPuvLwq4rl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rPuvLwq4rl .btn {
    font-size: 20px !important;
  }
}
.cid-rPuvLwq4rl .mbr-section-title {
  color: #ffffff;
}
.cid-rPuR3FrL56 .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;
  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-rPuR3FrL56 .nav-item:focus,
.cid-rPuR3FrL56 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPuR3FrL56 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rPuR3FrL56 .nav-item .nav-link {
    position: relative;
  }
  .cid-rPuR3FrL56 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rPuR3FrL56 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rPuR3FrL56 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPuR3FrL56 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rPuR3FrL56 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPuR3FrL56 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPuR3FrL56 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rPuR3FrL56 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rPuR3FrL56 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPuR3FrL56 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPuR3FrL56 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPuR3FrL56 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rPuR3FrL56 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPuR3FrL56 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPuR3FrL56 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPuR3FrL56 .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-rPuR3FrL56 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPuR3FrL56 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPuR3FrL56 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPuR3FrL56 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPuR3FrL56 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPuR3FrL56 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPuR3FrL56 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPuR3FrL56 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPuR3FrL56 .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-rPuR3FrL56 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPuR3FrL56 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPuR3FrL56 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPuR3FrL56 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPuR3FrL56 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rPuR3FrL56 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPuR3FrL56 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rPuR3FrL56 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPuR3FrL56 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPuR3FrL56 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPuR3FrL56 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPuR3FrL56 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPuR3FrL56 .dropdown-item.active,
.cid-rPuR3FrL56 .dropdown-item:active {
  background-color: transparent;
}
.cid-rPuR3FrL56 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPuR3FrL56 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPuR3FrL56 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPuR3FrL56 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rPuR3FrL56 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPuR3FrL56 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPuR3FrL56 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rPuR3FrL56 .navbar-buttons {
  text-align: center;
}
.cid-rPuR3FrL56 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rPuR3FrL56 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rPuR3FrL56 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPuR3FrL56 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPuR3FrL56 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPuR3FrL56 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPuR3FrL56 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPuR3FrL56 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPuR3FrL56 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPuR3FrL56 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPuR3FrL56 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPuR3FrL56 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rPuR3FrL56 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPuR3FrL56 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rPuR3FrL56 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPuR3FrL56 .navbar {
    height: 77px;
  }
  .cid-rPuR3FrL56 .navbar.opened {
    height: auto;
  }
  .cid-rPuR3FrL56 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPuR3HJQNU {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPuR3HJQNU p {
  color: #767676;
}
.cid-rPuR3HJQNU .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rPuR3HJQNU .main {
  flex-direction: row-reverse;
}
.cid-rPuR3HJQNU .row-element,
.cid-rPuR3HJQNU .image-element {
  padding: 0;
}
.cid-rPuR3HJQNU .image-element {
  display: flex;
  justify-content: center;
}
.cid-rPuR3HJQNU .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rPuR3HJQNU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuR3HJQNU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rPuR3HJQNU .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rPuR3HJQNU .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rPuR3HJQNU .text-content {
    padding: 2rem 1rem;
  }
  .cid-rPuR3HJQNU .underline .line {
    height: 2px;
  }
  .cid-rPuR3HJQNU .mbr-title,
  .cid-rPuR3HJQNU .underline,
  .cid-rPuR3HJQNU .mbr-text,
  .cid-rPuR3HJQNU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rPuR3HJQNU .mbr-title,
.cid-rPuR3HJQNU .underline {
  color: #84510e;
}
.cid-rPuR3JF3ZX {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuR3JF3ZX .container-fluid {
  padding: 0 3rem;
}
.cid-rPuR3JF3ZX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuR3JF3ZX .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rPuR3JF3ZX .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rPuR3JF3ZX .card .card-wrapper {
  height: 1%;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rPuR3JF3ZX .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rPuR3JF3ZX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rPuX0sOSTq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuX0sOSTq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rPuX0sOSTq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rPuX0sOSTq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rPuX0sOSTq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rPuX0sOSTq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rPuX0sOSTq .icon-focus {
  display: none;
}
.cid-rPuX0sOSTq .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rPuX0sOSTq ul {
  font-size: 0;
}
.cid-rPuX0sOSTq .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rPuX0sOSTq .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rPuX0sOSTq .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rPuX0sOSTq .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rPuX0sOSTq .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rPuX0sOSTq .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rPuX0sOSTq .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuX0sOSTq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuX0sOSTq .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rPuX0sOSTq .btn:hover {
  background: transparent !important;
}
.cid-rPuX0sOSTq .btn:hover:before {
  background: transparent !important;
}
.cid-rPuX0sOSTq .btn:before {
  background-color: transparent !important;
}
.cid-rPuX0sOSTq .btn:focus {
  box-shadow: none;
}
.cid-rPuR3Spyt1 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rPuR3Spyt1 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rPuR3Spyt1 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rPuR3Spyt1 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rPuR3Spyt1 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rPuR3Spyt1 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rPuR3Spyt1 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rPuR3Spyt1 .card .panel-body {
  color: #767676;
}
.cid-rPuR3Spyt1 H2 {
  color: #84510e;
}
.cid-rPuR3Spyt1 H4 {
  color: #5b686b;
}
.cid-rPuR3V2n46 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPuR3V2n46 .title {
  margin-bottom: 2rem;
}
.cid-rPuR3V2n46 .mbr-section-subtitle {
  color: #767676;
}
.cid-rPuR3V2n46 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rPuR3V2n46 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rPuR3V2n46 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rPuR3V2n46 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPuR3V2n46 H2 {
  color: #84510e;
}
.cid-rPuR3X3XlO {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rPuR3X3XlO .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rPuR3X3XlO .social-list a:focus {
  text-decoration: none;
}
.cid-rPuR3X3XlO H2 {
  color: #ffffff;
}
.cid-rPuR41oiU8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPuR41oiU8 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPuR41oiU8 .content {
    text-align: center;
  }
  .cid-rPuR41oiU8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPuR41oiU8 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rPuR41oiU8 .input-group-btn {
  display: inline-block;
}
.cid-rPuR41oiU8 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rPuR41oiU8 .img-logo img {
  height: 6rem;
}
.cid-rPuR41oiU8 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rPuR41oiU8 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rPuR41oiU8 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPuR41oiU8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPuR41oiU8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rPuR41oiU8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rPuR41oiU8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPuR41oiU8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPuR41oiU8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPuR41oiU8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPuR41oiU8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rPuR41oiU8 form .input-group input.form-control,
.cid-rPuR41oiU8 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rPuR41oiU8 .form-inline {
  justify-content: center;
}
.cid-rPuR41oiU8 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rPuR41oiU8 .foot-logo {
    text-align: center !important;
  }
  .cid-rPuR41oiU8 .foot-title {
    text-align: center !important;
  }
  .cid-rPuR41oiU8 .mbr-text {
    text-align: center !important;
  }
}
.cid-rPuR45gKjX {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPuR45gKjX .container-fluid {
  padding: 0 3rem;
}
.cid-rPuR45gKjX ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rPuR45gKjX ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rPuR45gKjX ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rPuR45gKjX ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rPuR45gKjX .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPuR45gKjX .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rPuR45gKjX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPuR45gKjX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPuR48uW1y {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rPuR48uW1y .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rPuR48uW1y .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rPuR48uW1y .btn-social {
  border: none !important;
}
.cid-rPuR48uW1y [class^="socicon-"]:before,
.cid-rPuR48uW1y [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rPuR48uW1y .btn {
    font-size: 20px !important;
  }
}
.cid-rPuR48uW1y .mbr-section-title {
  color: #ffffff;
}
.cid-rPFfrRaG6L .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;
  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-rPFfrRaG6L .nav-item:focus,
.cid-rPFfrRaG6L .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPFfrRaG6L .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rPFfrRaG6L .nav-item .nav-link {
    position: relative;
  }
  .cid-rPFfrRaG6L .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rPFfrRaG6L .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rPFfrRaG6L .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPFfrRaG6L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rPFfrRaG6L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPFfrRaG6L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPFfrRaG6L .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rPFfrRaG6L .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rPFfrRaG6L .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPFfrRaG6L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPFfrRaG6L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPFfrRaG6L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rPFfrRaG6L .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPFfrRaG6L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPFfrRaG6L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPFfrRaG6L .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-rPFfrRaG6L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPFfrRaG6L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPFfrRaG6L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPFfrRaG6L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPFfrRaG6L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPFfrRaG6L .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPFfrRaG6L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPFfrRaG6L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPFfrRaG6L .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-rPFfrRaG6L .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPFfrRaG6L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPFfrRaG6L .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPFfrRaG6L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPFfrRaG6L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rPFfrRaG6L .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPFfrRaG6L .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rPFfrRaG6L .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPFfrRaG6L .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPFfrRaG6L .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPFfrRaG6L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPFfrRaG6L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPFfrRaG6L .dropdown-item.active,
.cid-rPFfrRaG6L .dropdown-item:active {
  background-color: transparent;
}
.cid-rPFfrRaG6L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPFfrRaG6L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPFfrRaG6L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPFfrRaG6L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rPFfrRaG6L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPFfrRaG6L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPFfrRaG6L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rPFfrRaG6L .navbar-buttons {
  text-align: center;
}
.cid-rPFfrRaG6L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rPFfrRaG6L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rPFfrRaG6L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPFfrRaG6L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPFfrRaG6L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPFfrRaG6L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPFfrRaG6L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPFfrRaG6L nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPFfrRaG6L nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPFfrRaG6L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPFfrRaG6L .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPFfrRaG6L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rPFfrRaG6L .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPFfrRaG6L .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rPFfrRaG6L .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPFfrRaG6L .navbar {
    height: 77px;
  }
  .cid-rPFfrRaG6L .navbar.opened {
    height: auto;
  }
  .cid-rPFfrRaG6L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPFfrUZAI3 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPFfrUZAI3 p {
  color: #767676;
}
.cid-rPFfrUZAI3 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rPFfrUZAI3 .main {
  flex-direction: row-reverse;
}
.cid-rPFfrUZAI3 .row-element,
.cid-rPFfrUZAI3 .image-element {
  padding: 0;
}
.cid-rPFfrUZAI3 .image-element {
  display: flex;
  justify-content: center;
}
.cid-rPFfrUZAI3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rPFfrUZAI3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFfrUZAI3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rPFfrUZAI3 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rPFfrUZAI3 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rPFfrUZAI3 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rPFfrUZAI3 .underline .line {
    height: 2px;
  }
  .cid-rPFfrUZAI3 .mbr-title,
  .cid-rPFfrUZAI3 .underline,
  .cid-rPFfrUZAI3 .mbr-text,
  .cid-rPFfrUZAI3 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rPFfrUZAI3 .mbr-title,
.cid-rPFfrUZAI3 .underline {
  color: #84510e;
}
.cid-rPFfrXBGS7 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPFfrXBGS7 .container-fluid {
  padding: 0 3rem;
}
.cid-rPFfrXBGS7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPFfrXBGS7 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rPFfrXBGS7 .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rPFfrXBGS7 .card .card-wrapper {
  height: 1%;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff18b4;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rPFfrXBGS7 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rPFfrXBGS7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rPFThkD5Wb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPFThkD5Wb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rPFThkD5Wb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rPFThkD5Wb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rPFThkD5Wb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rPFThkD5Wb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rPFThkD5Wb .icon-focus {
  display: none;
}
.cid-rPFThkD5Wb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rPFThkD5Wb ul {
  font-size: 0;
}
.cid-rPFThkD5Wb .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rPFThkD5Wb .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rPFThkD5Wb .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rPFThkD5Wb .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rPFThkD5Wb .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rPFThkD5Wb .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rPFThkD5Wb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFThkD5Wb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPFThkD5Wb .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rPFThkD5Wb .btn:hover {
  background: transparent !important;
}
.cid-rPFThkD5Wb .btn:hover:before {
  background: transparent !important;
}
.cid-rPFThkD5Wb .btn:before {
  background-color: transparent !important;
}
.cid-rPFThkD5Wb .btn:focus {
  box-shadow: none;
}
.cid-rPFfs5Mqvp {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rPFfs5Mqvp .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rPFfs5Mqvp .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rPFfs5Mqvp .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rPFfs5Mqvp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rPFfs5Mqvp .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rPFfs5Mqvp .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rPFfs5Mqvp .card .panel-body {
  color: #767676;
}
.cid-rPFfs5Mqvp H2 {
  color: #84510e;
}
.cid-rPFfs5Mqvp H4 {
  color: #5b686b;
}
.cid-rPFfs8w5Yp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPFfs8w5Yp .title {
  margin-bottom: 2rem;
}
.cid-rPFfs8w5Yp .mbr-section-subtitle {
  color: #767676;
}
.cid-rPFfs8w5Yp a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rPFfs8w5Yp a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rPFfs8w5Yp .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rPFfs8w5Yp .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPFfs8w5Yp H2 {
  color: #84510e;
}
.cid-rPFfsavlBO {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rPFfsavlBO .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rPFfsavlBO .social-list a:focus {
  text-decoration: none;
}
.cid-rPFfsavlBO H2 {
  color: #ffffff;
}
.cid-rPFfseGP0Q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPFfseGP0Q .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPFfseGP0Q .content {
    text-align: center;
  }
  .cid-rPFfseGP0Q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPFfseGP0Q .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rPFfseGP0Q .input-group-btn {
  display: inline-block;
}
.cid-rPFfseGP0Q .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rPFfseGP0Q .img-logo img {
  height: 6rem;
}
.cid-rPFfseGP0Q [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rPFfseGP0Q [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rPFfseGP0Q .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPFfseGP0Q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPFfseGP0Q .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rPFfseGP0Q .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rPFfseGP0Q .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPFfseGP0Q .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPFfseGP0Q .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPFfseGP0Q .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPFfseGP0Q .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rPFfseGP0Q form .input-group input.form-control,
.cid-rPFfseGP0Q form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rPFfseGP0Q .form-inline {
  justify-content: center;
}
.cid-rPFfseGP0Q .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rPFfseGP0Q .foot-logo {
    text-align: center !important;
  }
  .cid-rPFfseGP0Q .foot-title {
    text-align: center !important;
  }
  .cid-rPFfseGP0Q .mbr-text {
    text-align: center !important;
  }
}
.cid-rPFfshIze8 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPFfshIze8 .container-fluid {
  padding: 0 3rem;
}
.cid-rPFfshIze8 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rPFfshIze8 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rPFfshIze8 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rPFfshIze8 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rPFfshIze8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPFfshIze8 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rPFfshIze8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFfshIze8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPFfsloyNA {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rPFfsloyNA .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rPFfsloyNA .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rPFfsloyNA .btn-social {
  border: none !important;
}
.cid-rPFfsloyNA [class^="socicon-"]:before,
.cid-rPFfsloyNA [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rPFfsloyNA .btn {
    font-size: 20px !important;
  }
}
.cid-rPFfsloyNA .mbr-section-title {
  color: #ffffff;
}
.cid-rPFljaSajE .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;
  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-rPFljaSajE .nav-item:focus,
.cid-rPFljaSajE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPFljaSajE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rPFljaSajE .nav-item .nav-link {
    position: relative;
  }
  .cid-rPFljaSajE .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rPFljaSajE .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rPFljaSajE .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPFljaSajE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rPFljaSajE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPFljaSajE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPFljaSajE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rPFljaSajE .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rPFljaSajE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPFljaSajE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPFljaSajE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPFljaSajE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rPFljaSajE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPFljaSajE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPFljaSajE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPFljaSajE .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-rPFljaSajE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPFljaSajE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPFljaSajE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPFljaSajE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPFljaSajE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPFljaSajE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPFljaSajE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPFljaSajE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPFljaSajE .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-rPFljaSajE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPFljaSajE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPFljaSajE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPFljaSajE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPFljaSajE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rPFljaSajE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPFljaSajE .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rPFljaSajE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPFljaSajE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPFljaSajE .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPFljaSajE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPFljaSajE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPFljaSajE .dropdown-item.active,
.cid-rPFljaSajE .dropdown-item:active {
  background-color: transparent;
}
.cid-rPFljaSajE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPFljaSajE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPFljaSajE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPFljaSajE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rPFljaSajE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPFljaSajE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPFljaSajE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rPFljaSajE .navbar-buttons {
  text-align: center;
}
.cid-rPFljaSajE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rPFljaSajE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rPFljaSajE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPFljaSajE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPFljaSajE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPFljaSajE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPFljaSajE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPFljaSajE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPFljaSajE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPFljaSajE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPFljaSajE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPFljaSajE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rPFljaSajE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPFljaSajE .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rPFljaSajE .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPFljaSajE .navbar {
    height: 77px;
  }
  .cid-rPFljaSajE .navbar.opened {
    height: auto;
  }
  .cid-rPFljaSajE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPFljeQNCj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPFljeQNCj p {
  color: #767676;
}
.cid-rPFljeQNCj .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rPFljeQNCj .main {
  flex-direction: row-reverse;
}
.cid-rPFljeQNCj .row-element,
.cid-rPFljeQNCj .image-element {
  padding: 0;
}
.cid-rPFljeQNCj .image-element {
  display: flex;
  justify-content: center;
}
.cid-rPFljeQNCj .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rPFljeQNCj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFljeQNCj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rPFljeQNCj .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rPFljeQNCj .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rPFljeQNCj .text-content {
    padding: 2rem 1rem;
  }
  .cid-rPFljeQNCj .underline .line {
    height: 2px;
  }
  .cid-rPFljeQNCj .mbr-title,
  .cid-rPFljeQNCj .underline,
  .cid-rPFljeQNCj .mbr-text,
  .cid-rPFljeQNCj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rPFljeQNCj .mbr-title,
.cid-rPFljeQNCj .underline {
  color: #84510e;
}
.cid-rPFs9285Ao {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-5179-2000x1500.jpeg");
}
.cid-rPFs9285Ao .container-fluid {
  padding: 0 3rem;
}
.cid-rPFs9285Ao .card .card-wrapper {
  height: 1%;
}
.cid-rPFs9285Ao .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-rPFs9285Ao .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rPFs9285Ao .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rPFs9285Ao .text-row {
  align-self: center;
  -webkit-align-self: center;
}
@media (max-width: 767px) {
  .cid-rPFs9285Ao .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPFs9285Ao .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rPFs9285Ao H2 {
  color: #84510e;
}
.cid-rPFHP3F9q6 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPFHP3F9q6 .container-fluid {
  padding: 0 3rem;
}
.cid-rPFHP3F9q6 .media-container-column {
  padding: 0 2rem;
}
.cid-rPFHP3F9q6 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #5b686b;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rPFHP3F9q6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rPFHP3F9q6 .mbr-section-subtitle {
  color: #84510e;
}
.cid-rPFS6khwgz {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPFS6khwgz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rPFS6khwgz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rPFS6khwgz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rPFS6khwgz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rPFS6khwgz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #28d4e2);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rPFS6khwgz .icon-focus {
  display: none;
}
.cid-rPFS6khwgz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-rPFS6khwgz ul {
  font-size: 0;
}
.cid-rPFS6khwgz .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rPFS6khwgz .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rPFS6khwgz .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
}
.cid-rPFS6khwgz .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rPFS6khwgz .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rPFS6khwgz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rPFS6khwgz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFS6khwgz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPFS6khwgz .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rPFS6khwgz .btn:hover {
  background: transparent !important;
}
.cid-rPFS6khwgz .btn:hover:before {
  background: transparent !important;
}
.cid-rPFS6khwgz .btn:before {
  background-color: transparent !important;
}
.cid-rPFS6khwgz .btn:focus {
  box-shadow: none;
}
.cid-rPFljrgVhE {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rPFljrgVhE .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rPFljrgVhE .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rPFljrgVhE .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rPFljrgVhE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rPFljrgVhE .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rPFljrgVhE .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rPFljrgVhE .card .panel-body {
  color: #767676;
}
.cid-rPFljrgVhE H2 {
  color: #84510e;
}
.cid-rPFljrgVhE H4 {
  color: #5b686b;
}
.cid-rPFljuCl3b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rPFljuCl3b .title {
  margin-bottom: 2rem;
}
.cid-rPFljuCl3b .mbr-section-subtitle {
  color: #767676;
}
.cid-rPFljuCl3b a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rPFljuCl3b a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rPFljuCl3b .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rPFljuCl3b .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPFljuCl3b H2 {
  color: #84510e;
}
.cid-rPFljxsdz0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rPFljxsdz0 .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rPFljxsdz0 .social-list a:focus {
  text-decoration: none;
}
.cid-rPFljxsdz0 H2 {
  color: #ffffff;
}
.cid-rPFljBu5pB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPFljBu5pB .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPFljBu5pB .content {
    text-align: center;
  }
  .cid-rPFljBu5pB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPFljBu5pB .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rPFljBu5pB .input-group-btn {
  display: inline-block;
}
.cid-rPFljBu5pB .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rPFljBu5pB .img-logo img {
  height: 6rem;
}
.cid-rPFljBu5pB [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rPFljBu5pB [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rPFljBu5pB .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rPFljBu5pB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPFljBu5pB .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rPFljBu5pB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rPFljBu5pB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPFljBu5pB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPFljBu5pB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPFljBu5pB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPFljBu5pB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rPFljBu5pB form .input-group input.form-control,
.cid-rPFljBu5pB form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rPFljBu5pB .form-inline {
  justify-content: center;
}
.cid-rPFljBu5pB .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rPFljBu5pB .foot-logo {
    text-align: center !important;
  }
  .cid-rPFljBu5pB .foot-title {
    text-align: center !important;
  }
  .cid-rPFljBu5pB .mbr-text {
    text-align: center !important;
  }
}
.cid-rPFljFTNK2 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPFljFTNK2 .container-fluid {
  padding: 0 3rem;
}
.cid-rPFljFTNK2 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rPFljFTNK2 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rPFljFTNK2 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rPFljFTNK2 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rPFljFTNK2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rPFljFTNK2 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rPFljFTNK2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rPFljFTNK2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rPFljJUfEc {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rPFljJUfEc .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rPFljJUfEc .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rPFljJUfEc .btn-social {
  border: none !important;
}
.cid-rPFljJUfEc [class^="socicon-"]:before,
.cid-rPFljJUfEc [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rPFljJUfEc .btn {
    font-size: 20px !important;
  }
}
.cid-rPFljJUfEc .mbr-section-title {
  color: #ffffff;
}
.cid-rRsAPqSQhp .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;
  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-rRsAPqSQhp .nav-item:focus,
.cid-rRsAPqSQhp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rRsAPqSQhp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rRsAPqSQhp .nav-item .nav-link {
    position: relative;
  }
  .cid-rRsAPqSQhp .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rRsAPqSQhp .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rRsAPqSQhp .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRsAPqSQhp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rRsAPqSQhp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRsAPqSQhp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRsAPqSQhp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rRsAPqSQhp .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rRsAPqSQhp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rRsAPqSQhp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rRsAPqSQhp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rRsAPqSQhp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rRsAPqSQhp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRsAPqSQhp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRsAPqSQhp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRsAPqSQhp .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-rRsAPqSQhp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRsAPqSQhp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRsAPqSQhp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rRsAPqSQhp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rRsAPqSQhp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRsAPqSQhp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRsAPqSQhp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRsAPqSQhp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRsAPqSQhp .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-rRsAPqSQhp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRsAPqSQhp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRsAPqSQhp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rRsAPqSQhp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rRsAPqSQhp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rRsAPqSQhp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rRsAPqSQhp .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rRsAPqSQhp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRsAPqSQhp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRsAPqSQhp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rRsAPqSQhp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRsAPqSQhp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRsAPqSQhp .dropdown-item.active,
.cid-rRsAPqSQhp .dropdown-item:active {
  background-color: transparent;
}
.cid-rRsAPqSQhp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRsAPqSQhp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRsAPqSQhp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRsAPqSQhp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rRsAPqSQhp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRsAPqSQhp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRsAPqSQhp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rRsAPqSQhp .navbar-buttons {
  text-align: center;
}
.cid-rRsAPqSQhp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rRsAPqSQhp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rRsAPqSQhp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRsAPqSQhp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRsAPqSQhp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRsAPqSQhp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRsAPqSQhp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRsAPqSQhp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rRsAPqSQhp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rRsAPqSQhp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRsAPqSQhp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rRsAPqSQhp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rRsAPqSQhp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rRsAPqSQhp .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rRsAPqSQhp .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAPqSQhp .navbar {
    height: 77px;
  }
  .cid-rRsAPqSQhp .navbar.opened {
    height: auto;
  }
  .cid-rRsAPqSQhp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRsAPsU2tF {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRsAPsU2tF H1 {
  color: #986ee7;
}
.cid-rRsAPsU2tF H3 {
  color: #767676;
}
.cid-rRsAPsU2tF P {
  color: #767676;
}
.cid-rRsAPsU2tF SPAN {
  color: #84510e;
}
.cid-rRsAPuPdvG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #00e9f2;
}
.cid-rRsAPuPdvG .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAPuPdvG .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAPuPdvG .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rRsAPuPdvG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAPuPdvG .mbr-section-title SPAN {
  color: #84510e;
}
.cid-rRsAPuPdvG .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAPx5zdz {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #00e9f2;
}
.cid-rRsAPyMbNI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAPyMbNI .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAPyMbNI .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAPyMbNI .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRsAPyMbNI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAPyMbNI .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAPBn2DG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRsAPBn2DG .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRsAPBn2DG .mbr-shop .row {
  margin: 0;
}
.cid-rRsAPBn2DG .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRsAPBn2DG .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRsAPBn2DG .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRsAPBn2DG .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRsAPBn2DG .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRsAPBn2DG .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRsAPBn2DG .mbr-shop .hide-modal {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPBn2DG .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRsAPBn2DG .mbr-shop .filter-by-pu,
.cid-rRsAPBn2DG .mbr-shop .filter-by-pd,
.cid-rRsAPBn2DG .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRsAPBn2DG .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRsAPBn2DG .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem h4,
.cid-rRsAPBn2DG .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem h5,
.cid-rRsAPBn2DG .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-rRsAPBn2DG .mbr-shop .galleryItem p,
.cid-rRsAPBn2DG .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-rRsAPBn2DG .mbr-shop .item-button {
  text-align: center;
}
.cid-rRsAPBn2DG .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRsAPBn2DG .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRsAPBn2DG .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRsAPBn2DG .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRsAPBn2DG .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRsAPBn2DG .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRsAPBn2DG .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRsAPBn2DG .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRsAPBn2DG .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRsAPBn2DG .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRsAPBn2DG .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-rRsAPBn2DG .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRsAPBn2DG .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRsAPBn2DG .mbr-shop .range-controls {
  position: relative;
}
.cid-rRsAPBn2DG .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRsAPBn2DG .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRsAPBn2DG .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRsAPBn2DG .mbr-shop .toggle:hover,
.cid-rRsAPBn2DG .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRsAPBn2DG .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRsAPBn2DG .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRsAPBn2DG .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRsAPBn2DG .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRsAPBn2DG .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRsAPBn2DG .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRsAPBn2DG .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPBn2DG .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPBn2DG .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPBn2DG .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPBn2DG .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRsAPBn2DG .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRsAPBn2DG .mbr-shop .shop-items .onsale,
.cid-rRsAPBn2DG .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRsAPBn2DG .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRsAPBn2DG .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRsAPBn2DG .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRsAPBn2DG .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRsAPBn2DG .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRsAPBn2DG .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRsAPBn2DG .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRsAPBn2DG .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRsAPBn2DG .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRsAPBn2DG .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRsAPBn2DG .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRsAPBn2DG .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRsAPBn2DG .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRsAPBn2DG .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRsAPBn2DG .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRsAPBn2DG .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRsAPBn2DG .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRsAPBn2DG .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRsAPBn2DG .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRsAPBn2DG .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRsAPBn2DG .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRsAPBn2DG .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRsAPBn2DG .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRsAPBn2DG .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRsAPBn2DG .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRsAPBn2DG .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRsAPBn2DG .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRsAPBn2DG .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRsAPBn2DG .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAPBn2DG .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRsAPBn2DG .range-controls {
    display: block !important;
  }
}
.cid-rRsAPBn2DG .onsale {
  color: #ffffff;
}
.cid-rRsAPGLeT6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAPGLeT6 .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAPGLeT6 .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAPGLeT6 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRsAPGLeT6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAPGLeT6 .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAPIA3gK {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rRsAPIA3gK .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRsAPIA3gK .mbr-shop .row {
  margin: 0;
}
.cid-rRsAPIA3gK .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRsAPIA3gK .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRsAPIA3gK .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRsAPIA3gK .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRsAPIA3gK .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRsAPIA3gK .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRsAPIA3gK .mbr-shop .hide-modal {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPIA3gK .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRsAPIA3gK .mbr-shop .filter-by-pu,
.cid-rRsAPIA3gK .mbr-shop .filter-by-pd,
.cid-rRsAPIA3gK .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRsAPIA3gK .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRsAPIA3gK .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem h4,
.cid-rRsAPIA3gK .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem h5,
.cid-rRsAPIA3gK .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-rRsAPIA3gK .mbr-shop .galleryItem p,
.cid-rRsAPIA3gK .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-rRsAPIA3gK .mbr-shop .item-button {
  text-align: center;
}
.cid-rRsAPIA3gK .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRsAPIA3gK .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRsAPIA3gK .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRsAPIA3gK .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRsAPIA3gK .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRsAPIA3gK .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRsAPIA3gK .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRsAPIA3gK .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRsAPIA3gK .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRsAPIA3gK .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRsAPIA3gK .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-rRsAPIA3gK .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRsAPIA3gK .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRsAPIA3gK .mbr-shop .range-controls {
  position: relative;
}
.cid-rRsAPIA3gK .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRsAPIA3gK .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRsAPIA3gK .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRsAPIA3gK .mbr-shop .toggle:hover,
.cid-rRsAPIA3gK .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRsAPIA3gK .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRsAPIA3gK .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRsAPIA3gK .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRsAPIA3gK .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRsAPIA3gK .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRsAPIA3gK .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRsAPIA3gK .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPIA3gK .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPIA3gK .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPIA3gK .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPIA3gK .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRsAPIA3gK .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRsAPIA3gK .mbr-shop .shop-items .onsale,
.cid-rRsAPIA3gK .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRsAPIA3gK .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRsAPIA3gK .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRsAPIA3gK .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRsAPIA3gK .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRsAPIA3gK .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRsAPIA3gK .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRsAPIA3gK .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRsAPIA3gK .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRsAPIA3gK .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRsAPIA3gK .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRsAPIA3gK .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRsAPIA3gK .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRsAPIA3gK .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRsAPIA3gK .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRsAPIA3gK .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRsAPIA3gK .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRsAPIA3gK .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRsAPIA3gK .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRsAPIA3gK .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRsAPIA3gK .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRsAPIA3gK .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRsAPIA3gK .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRsAPIA3gK .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRsAPIA3gK .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRsAPIA3gK .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRsAPIA3gK .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRsAPIA3gK .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRsAPIA3gK .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRsAPIA3gK .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAPIA3gK .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRsAPIA3gK .range-controls {
    display: block !important;
  }
}
.cid-rRsAPIA3gK .onsale {
  color: #ffffff;
}
.cid-rRsAPOQzey {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAPOQzey .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAPOQzey .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAPOQzey .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRsAPOQzey .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAPOQzey .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAPRvlXO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRsAPRvlXO .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRsAPRvlXO .mbr-shop .row {
  margin: 0;
}
.cid-rRsAPRvlXO .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRsAPRvlXO .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRsAPRvlXO .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRsAPRvlXO .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRsAPRvlXO .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRsAPRvlXO .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRsAPRvlXO .mbr-shop .hide-modal {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPRvlXO .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRsAPRvlXO .mbr-shop .filter-by-pu,
.cid-rRsAPRvlXO .mbr-shop .filter-by-pd,
.cid-rRsAPRvlXO .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRsAPRvlXO .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRsAPRvlXO .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem h4,
.cid-rRsAPRvlXO .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem h5,
.cid-rRsAPRvlXO .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-rRsAPRvlXO .mbr-shop .galleryItem p,
.cid-rRsAPRvlXO .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-rRsAPRvlXO .mbr-shop .item-button {
  text-align: center;
}
.cid-rRsAPRvlXO .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRsAPRvlXO .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRsAPRvlXO .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRsAPRvlXO .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRsAPRvlXO .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRsAPRvlXO .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRsAPRvlXO .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRsAPRvlXO .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRsAPRvlXO .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRsAPRvlXO .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRsAPRvlXO .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-rRsAPRvlXO .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRsAPRvlXO .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRsAPRvlXO .mbr-shop .range-controls {
  position: relative;
}
.cid-rRsAPRvlXO .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRsAPRvlXO .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRsAPRvlXO .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRsAPRvlXO .mbr-shop .toggle:hover,
.cid-rRsAPRvlXO .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRsAPRvlXO .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRsAPRvlXO .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRsAPRvlXO .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRsAPRvlXO .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRsAPRvlXO .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRsAPRvlXO .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRsAPRvlXO .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPRvlXO .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPRvlXO .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPRvlXO .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPRvlXO .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRsAPRvlXO .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRsAPRvlXO .mbr-shop .shop-items .onsale,
.cid-rRsAPRvlXO .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRsAPRvlXO .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRsAPRvlXO .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRsAPRvlXO .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRsAPRvlXO .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRsAPRvlXO .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRsAPRvlXO .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRsAPRvlXO .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRsAPRvlXO .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRsAPRvlXO .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRsAPRvlXO .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRsAPRvlXO .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRsAPRvlXO .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRsAPRvlXO .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRsAPRvlXO .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRsAPRvlXO .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRsAPRvlXO .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRsAPRvlXO .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRsAPRvlXO .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRsAPRvlXO .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRsAPRvlXO .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRsAPRvlXO .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRsAPRvlXO .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRsAPRvlXO .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRsAPRvlXO .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRsAPRvlXO .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRsAPRvlXO .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRsAPRvlXO .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRsAPRvlXO .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRsAPRvlXO .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAPRvlXO .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRsAPRvlXO .range-controls {
    display: block !important;
  }
}
.cid-rRsAPRvlXO .onsale {
  color: #ffffff;
}
.cid-rRsAPXqLSm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAPXqLSm .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAPXqLSm .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAPXqLSm .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRsAPXqLSm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAPXqLSm .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAPYWIaA {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRsAPYWIaA .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRsAPYWIaA .mbr-shop .row {
  margin: 0;
}
.cid-rRsAPYWIaA .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRsAPYWIaA .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRsAPYWIaA .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRsAPYWIaA .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRsAPYWIaA .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRsAPYWIaA .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRsAPYWIaA .mbr-shop .hide-modal {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPYWIaA .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRsAPYWIaA .mbr-shop .filter-by-pu,
.cid-rRsAPYWIaA .mbr-shop .filter-by-pd,
.cid-rRsAPYWIaA .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRsAPYWIaA .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRsAPYWIaA .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem h4,
.cid-rRsAPYWIaA .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem h5,
.cid-rRsAPYWIaA .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-rRsAPYWIaA .mbr-shop .galleryItem p,
.cid-rRsAPYWIaA .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-rRsAPYWIaA .mbr-shop .item-button {
  text-align: center;
}
.cid-rRsAPYWIaA .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRsAPYWIaA .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRsAPYWIaA .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRsAPYWIaA .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRsAPYWIaA .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRsAPYWIaA .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRsAPYWIaA .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRsAPYWIaA .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRsAPYWIaA .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRsAPYWIaA .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRsAPYWIaA .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-rRsAPYWIaA .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRsAPYWIaA .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRsAPYWIaA .mbr-shop .range-controls {
  position: relative;
}
.cid-rRsAPYWIaA .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRsAPYWIaA .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRsAPYWIaA .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRsAPYWIaA .mbr-shop .toggle:hover,
.cid-rRsAPYWIaA .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRsAPYWIaA .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRsAPYWIaA .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRsAPYWIaA .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRsAPYWIaA .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRsAPYWIaA .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRsAPYWIaA .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRsAPYWIaA .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPYWIaA .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPYWIaA .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAPYWIaA .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAPYWIaA .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRsAPYWIaA .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRsAPYWIaA .mbr-shop .shop-items .onsale,
.cid-rRsAPYWIaA .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRsAPYWIaA .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRsAPYWIaA .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRsAPYWIaA .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRsAPYWIaA .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRsAPYWIaA .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRsAPYWIaA .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRsAPYWIaA .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRsAPYWIaA .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRsAPYWIaA .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRsAPYWIaA .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRsAPYWIaA .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRsAPYWIaA .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRsAPYWIaA .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRsAPYWIaA .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRsAPYWIaA .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRsAPYWIaA .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRsAPYWIaA .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRsAPYWIaA .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRsAPYWIaA .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRsAPYWIaA .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRsAPYWIaA .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRsAPYWIaA .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRsAPYWIaA .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRsAPYWIaA .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRsAPYWIaA .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRsAPYWIaA .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRsAPYWIaA .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRsAPYWIaA .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRsAPYWIaA .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAPYWIaA .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRsAPYWIaA .range-controls {
    display: block !important;
  }
}
.cid-rRsAPYWIaA .onsale {
  color: #ffffff;
}
.cid-rRsAQ5bh9C {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAQ5bh9C .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAQ5bh9C .media-container-column {
  padding: 0 2rem;
}
.cid-rRsAQ5bh9C .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRsAQ5bh9C .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRsAQ5bh9C .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRsAQ6Hdlm {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRsAQ6Hdlm .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRsAQ6Hdlm .mbr-shop .row {
  margin: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRsAQ6Hdlm .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRsAQ6Hdlm .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRsAQ6Hdlm .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRsAQ6Hdlm .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRsAQ6Hdlm .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRsAQ6Hdlm .mbr-shop .hide-modal {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAQ6Hdlm .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRsAQ6Hdlm .mbr-shop .filter-by-pu,
.cid-rRsAQ6Hdlm .mbr-shop .filter-by-pd,
.cid-rRsAQ6Hdlm .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRsAQ6Hdlm .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRsAQ6Hdlm .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem h4,
.cid-rRsAQ6Hdlm .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem h5,
.cid-rRsAQ6Hdlm .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-rRsAQ6Hdlm .mbr-shop .galleryItem p,
.cid-rRsAQ6Hdlm .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-rRsAQ6Hdlm .mbr-shop .item-button {
  text-align: center;
}
.cid-rRsAQ6Hdlm .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRsAQ6Hdlm .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRsAQ6Hdlm .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRsAQ6Hdlm .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRsAQ6Hdlm .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRsAQ6Hdlm .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRsAQ6Hdlm .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRsAQ6Hdlm .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRsAQ6Hdlm .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRsAQ6Hdlm .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRsAQ6Hdlm .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-rRsAQ6Hdlm .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRsAQ6Hdlm .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .range-controls {
  position: relative;
}
.cid-rRsAQ6Hdlm .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRsAQ6Hdlm .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRsAQ6Hdlm .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRsAQ6Hdlm .mbr-shop .toggle:hover,
.cid-rRsAQ6Hdlm .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRsAQ6Hdlm .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRsAQ6Hdlm .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRsAQ6Hdlm .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAQ6Hdlm .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRsAQ6Hdlm .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRsAQ6Hdlm .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRsAQ6Hdlm .mbr-shop .shop-items .onsale,
.cid-rRsAQ6Hdlm .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRsAQ6Hdlm .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRsAQ6Hdlm .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRsAQ6Hdlm .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRsAQ6Hdlm .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRsAQ6Hdlm .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRsAQ6Hdlm .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRsAQ6Hdlm .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRsAQ6Hdlm .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRsAQ6Hdlm .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRsAQ6Hdlm .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRsAQ6Hdlm .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRsAQ6Hdlm .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRsAQ6Hdlm .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRsAQ6Hdlm .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRsAQ6Hdlm .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRsAQ6Hdlm .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRsAQ6Hdlm .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRsAQ6Hdlm .range-controls {
    display: block !important;
  }
}
.cid-rRsAQ6Hdlm .onsale {
  color: #ffffff;
}
.cid-rRsAQFjRKr {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rRsAQFjRKr .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rRsAQFjRKr .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rRsAQFjRKr .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rRsAQFjRKr .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rRsAQFjRKr .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rRsAQFjRKr .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rRsAQFjRKr .card .panel-body {
  color: #767676;
}
.cid-rRsAQFjRKr H2 {
  color: #84510e;
}
.cid-rRsAQFjRKr H4 {
  color: #5b686b;
}
.cid-rRsAQHFGCi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rRsAQHFGCi .title {
  margin-bottom: 2rem;
}
.cid-rRsAQHFGCi .mbr-section-subtitle {
  color: #767676;
}
.cid-rRsAQHFGCi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rRsAQHFGCi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rRsAQHFGCi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rRsAQHFGCi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rRsAQHFGCi H2 {
  color: #84510e;
}
.cid-rRsAQKryAv {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rRsAQKryAv .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rRsAQKryAv .social-list a:focus {
  text-decoration: none;
}
.cid-rRsAQKryAv H2 {
  color: #ffffff;
}
.cid-rRsAQPuYj5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRsAQPuYj5 .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rRsAQPuYj5 .content {
    text-align: center;
  }
  .cid-rRsAQPuYj5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rRsAQPuYj5 .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rRsAQPuYj5 .input-group-btn {
  display: inline-block;
}
.cid-rRsAQPuYj5 .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rRsAQPuYj5 .img-logo img {
  height: 6rem;
}
.cid-rRsAQPuYj5 [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rRsAQPuYj5 [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rRsAQPuYj5 .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rRsAQPuYj5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rRsAQPuYj5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rRsAQPuYj5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rRsAQPuYj5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rRsAQPuYj5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rRsAQPuYj5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rRsAQPuYj5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rRsAQPuYj5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rRsAQPuYj5 form .input-group input.form-control,
.cid-rRsAQPuYj5 form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rRsAQPuYj5 .form-inline {
  justify-content: center;
}
.cid-rRsAQPuYj5 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rRsAQPuYj5 .foot-logo {
    text-align: center !important;
  }
  .cid-rRsAQPuYj5 .foot-title {
    text-align: center !important;
  }
  .cid-rRsAQPuYj5 .mbr-text {
    text-align: center !important;
  }
}
.cid-rRsAQStW92 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRsAQStW92 .container-fluid {
  padding: 0 3rem;
}
.cid-rRsAQStW92 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rRsAQStW92 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rRsAQStW92 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rRsAQStW92 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rRsAQStW92 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rRsAQStW92 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rRsAQStW92 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rRsAQStW92 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rRsAQWO9rJ {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rRsAQWO9rJ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rRsAQWO9rJ .btn-social {
  border: none !important;
}
.cid-rRsAQWO9rJ [class^="socicon-"]:before,
.cid-rRsAQWO9rJ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rRsAQWO9rJ .btn {
    font-size: 20px !important;
  }
}
.cid-rRsAQWO9rJ .mbr-section-title {
  color: #ffffff;
}
.cid-qTuJ57jw98 .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;
  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-qTuJ57jw98 .nav-item:focus,
.cid-qTuJ57jw98 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qTuJ57jw98 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qTuJ57jw98 .nav-item .nav-link {
    position: relative;
  }
  .cid-qTuJ57jw98 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qTuJ57jw98 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qTuJ57jw98 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qTuJ57jw98 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qTuJ57jw98 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qTuJ57jw98 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qTuJ57jw98 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-qTuJ57jw98 .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-qTuJ57jw98 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qTuJ57jw98 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qTuJ57jw98 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qTuJ57jw98 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qTuJ57jw98 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qTuJ57jw98 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qTuJ57jw98 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qTuJ57jw98 .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-qTuJ57jw98 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qTuJ57jw98 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qTuJ57jw98 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qTuJ57jw98 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qTuJ57jw98 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qTuJ57jw98 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qTuJ57jw98 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qTuJ57jw98 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qTuJ57jw98 .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-qTuJ57jw98 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qTuJ57jw98 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qTuJ57jw98 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qTuJ57jw98 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qTuJ57jw98 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qTuJ57jw98 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qTuJ57jw98 .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-qTuJ57jw98 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qTuJ57jw98 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qTuJ57jw98 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qTuJ57jw98 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qTuJ57jw98 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qTuJ57jw98 .dropdown-item.active,
.cid-qTuJ57jw98 .dropdown-item:active {
  background-color: transparent;
}
.cid-qTuJ57jw98 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qTuJ57jw98 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qTuJ57jw98 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qTuJ57jw98 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-qTuJ57jw98 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qTuJ57jw98 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTuJ57jw98 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qTuJ57jw98 .navbar-buttons {
  text-align: center;
}
.cid-qTuJ57jw98 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qTuJ57jw98 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTuJ57jw98 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTuJ57jw98 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTuJ57jw98 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTuJ57jw98 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTuJ57jw98 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTuJ57jw98 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTuJ57jw98 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTuJ57jw98 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTuJ57jw98 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qTuJ57jw98 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qTuJ57jw98 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qTuJ57jw98 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qTuJ57jw98 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qTuJ57jw98 .navbar {
    height: 77px;
  }
  .cid-qTuJ57jw98 .navbar.opened {
    height: auto;
  }
  .cid-qTuJ57jw98 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTuKGRZbin {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qTuKGRZbin H1 {
  color: #986ee7;
}
.cid-qTuKGRZbin H3 {
  color: #767676;
}
.cid-qTuKGRZbin P {
  color: #767676;
}
.cid-qTuKGRZbin SPAN {
  color: #84510e;
}
.cid-r6XzB8mljR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #00e9f2;
}
.cid-r6XzB8mljR .container-fluid {
  padding: 0 3rem;
}
.cid-r6XzB8mljR .media-container-column {
  padding: 0 2rem;
}
.cid-r6XzB8mljR .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-r6XzB8mljR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r6XzB8mljR .mbr-section-title SPAN {
  color: #84510e;
}
.cid-r6XzB8mljR .mbr-section-subtitle {
  color: #84510e;
}
.cid-r6XzsMYlyQ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #00e9f2;
}
.cid-r6XFqiLtgA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r6XFqiLtgA .container-fluid {
  padding: 0 3rem;
}
.cid-r6XFqiLtgA .media-container-column {
  padding: 0 2rem;
}
.cid-r6XFqiLtgA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-r6XFqiLtgA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r6XFqiLtgA .mbr-section-subtitle {
  color: #84510e;
}
.cid-r6YvwTFqce {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r6YvwTFqce .mbr-shop {
  display: table;
  width: 100%;
}
.cid-r6YvwTFqce .mbr-shop .row {
  margin: 0;
}
.cid-r6YvwTFqce .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-r6YvwTFqce .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-r6YvwTFqce .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-r6YvwTFqce .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-r6YvwTFqce .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-r6YvwTFqce .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-r6YvwTFqce .mbr-shop .hide-modal {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r6YvwTFqce .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-r6YvwTFqce .mbr-shop .filter-by-pu,
.cid-r6YvwTFqce .mbr-shop .filter-by-pd,
.cid-r6YvwTFqce .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-r6YvwTFqce .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-r6YvwTFqce .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem h4,
.cid-r6YvwTFqce .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem h5,
.cid-r6YvwTFqce .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-r6YvwTFqce .mbr-shop .galleryItem p,
.cid-r6YvwTFqce .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-r6YvwTFqce .mbr-shop .item-button {
  text-align: center;
}
.cid-r6YvwTFqce .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-r6YvwTFqce .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-r6YvwTFqce .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-r6YvwTFqce .mbr-shop .sidebar-block {
  position: relative;
}
.cid-r6YvwTFqce .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-r6YvwTFqce .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item__hided h4,
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item__hided h5,
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-r6YvwTFqce .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-r6YvwTFqce .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-r6YvwTFqce .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-r6YvwTFqce .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-r6YvwTFqce .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-r6YvwTFqce .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-r6YvwTFqce .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-r6YvwTFqce .mbr-shop .range-controls {
  position: relative;
}
.cid-r6YvwTFqce .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-r6YvwTFqce .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-r6YvwTFqce .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-r6YvwTFqce .mbr-shop .toggle:hover,
.cid-r6YvwTFqce .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-r6YvwTFqce .mbr-shop .min-toggle {
  left: 0;
}
.cid-r6YvwTFqce .mbr-shop .max-toggle {
  right: 0;
}
.cid-r6YvwTFqce .mbr-shop .hided-by-price {
  display: none;
}
.cid-r6YvwTFqce .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-r6YvwTFqce .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-r6YvwTFqce .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-r6YvwTFqce .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-r6YvwTFqce .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-r6YvwTFqce .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-r6YvwTFqce .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-r6YvwTFqce .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-r6YvwTFqce .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-r6YvwTFqce .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r6YvwTFqce .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r6YvwTFqce .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-r6YvwTFqce .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-r6YvwTFqce .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-r6YvwTFqce .mbr-shop .shop-items .onsale,
.cid-r6YvwTFqce .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-r6YvwTFqce .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-r6YvwTFqce .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-r6YvwTFqce .mbr-shop .price-range {
  display: inline-block;
}
.cid-r6YvwTFqce .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-r6YvwTFqce .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-r6YvwTFqce .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-r6YvwTFqce .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-r6YvwTFqce .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-r6YvwTFqce .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-r6YvwTFqce .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-r6YvwTFqce .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-r6YvwTFqce .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-r6YvwTFqce .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-r6YvwTFqce .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-r6YvwTFqce .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-r6YvwTFqce .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-r6YvwTFqce .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-r6YvwTFqce .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-r6YvwTFqce .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-r6YvwTFqce .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-r6YvwTFqce .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-r6YvwTFqce .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-r6YvwTFqce .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-r6YvwTFqce .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-r6YvwTFqce .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-r6YvwTFqce .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-r6YvwTFqce .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-r6YvwTFqce .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-r6YvwTFqce .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-r6YvwTFqce .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r6YvwTFqce .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-r6YvwTFqce .range-controls {
    display: block !important;
  }
}
.cid-r6YvwTFqce .onsale {
  color: #ffffff;
}
.cid-r745zgYdUj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r745zgYdUj .container-fluid {
  padding: 0 3rem;
}
.cid-r745zgYdUj .media-container-column {
  padding: 0 2rem;
}
.cid-r745zgYdUj .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-r745zgYdUj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r745zgYdUj .mbr-section-subtitle {
  color: #84510e;
}
.cid-r745BZhSrK {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-r745BZhSrK .mbr-shop {
  display: table;
  width: 100%;
}
.cid-r745BZhSrK .mbr-shop .row {
  margin: 0;
}
.cid-r745BZhSrK .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-r745BZhSrK .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-r745BZhSrK .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-r745BZhSrK .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-r745BZhSrK .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-r745BZhSrK .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-r745BZhSrK .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-r745BZhSrK .mbr-shop .hide-modal {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r745BZhSrK .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-r745BZhSrK .mbr-shop .filter-by-pu,
.cid-r745BZhSrK .mbr-shop .filter-by-pd,
.cid-r745BZhSrK .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-r745BZhSrK .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-r745BZhSrK .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-r745BZhSrK .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-r745BZhSrK .mbr-shop .galleryItem h4,
.cid-r745BZhSrK .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-r745BZhSrK .mbr-shop .galleryItem h5,
.cid-r745BZhSrK .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-r745BZhSrK .mbr-shop .galleryItem p,
.cid-r745BZhSrK .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-r745BZhSrK .mbr-shop .item-button {
  text-align: center;
}
.cid-r745BZhSrK .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-r745BZhSrK .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-r745BZhSrK .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-r745BZhSrK .mbr-shop .sidebar-block {
  position: relative;
}
.cid-r745BZhSrK .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-r745BZhSrK .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-r745BZhSrK .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-r745BZhSrK .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item__hided h4,
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item__hided h5,
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-r745BZhSrK .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-r745BZhSrK .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-r745BZhSrK .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-r745BZhSrK .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-r745BZhSrK .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-r745BZhSrK .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-r745BZhSrK .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-r745BZhSrK .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-r745BZhSrK .mbr-shop .range-controls {
  position: relative;
}
.cid-r745BZhSrK .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-r745BZhSrK .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-r745BZhSrK .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-r745BZhSrK .mbr-shop .toggle:hover,
.cid-r745BZhSrK .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-r745BZhSrK .mbr-shop .min-toggle {
  left: 0;
}
.cid-r745BZhSrK .mbr-shop .max-toggle {
  right: 0;
}
.cid-r745BZhSrK .mbr-shop .hided-by-price {
  display: none;
}
.cid-r745BZhSrK .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-r745BZhSrK .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-r745BZhSrK .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-r745BZhSrK .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-r745BZhSrK .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-r745BZhSrK .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-r745BZhSrK .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-r745BZhSrK .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-r745BZhSrK .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-r745BZhSrK .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r745BZhSrK .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-r745BZhSrK .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-r745BZhSrK .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-r745BZhSrK .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-r745BZhSrK .mbr-shop .shop-items .onsale,
.cid-r745BZhSrK .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-r745BZhSrK .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-r745BZhSrK .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-r745BZhSrK .mbr-shop .price-range {
  display: inline-block;
}
.cid-r745BZhSrK .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-r745BZhSrK .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-r745BZhSrK .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-r745BZhSrK .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-r745BZhSrK .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-r745BZhSrK .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-r745BZhSrK .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-r745BZhSrK .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-r745BZhSrK .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-r745BZhSrK .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-r745BZhSrK .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-r745BZhSrK .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-r745BZhSrK .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-r745BZhSrK .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-r745BZhSrK .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-r745BZhSrK .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-r745BZhSrK .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-r745BZhSrK .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-r745BZhSrK .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-r745BZhSrK .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-r745BZhSrK .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-r745BZhSrK .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-r745BZhSrK .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-r745BZhSrK .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-r745BZhSrK .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-r745BZhSrK .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-r745BZhSrK .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r745BZhSrK .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-r745BZhSrK .range-controls {
    display: block !important;
  }
}
.cid-r745BZhSrK .onsale {
  color: #ffffff;
}
.cid-r74b4SUurM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r74b4SUurM .container-fluid {
  padding: 0 3rem;
}
.cid-r74b4SUurM .media-container-column {
  padding: 0 2rem;
}
.cid-r74b4SUurM .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-r74b4SUurM .container-fluid {
    padding: 0 1rem;
  }
}
.cid-r74b4SUurM .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniD46SmVd {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniD46SmVd .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniD46SmVd .mbr-shop .row {
  margin: 0;
}
.cid-rniD46SmVd .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniD46SmVd .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniD46SmVd .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniD46SmVd .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniD46SmVd .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniD46SmVd .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniD46SmVd .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniD46SmVd .mbr-shop .hide-modal {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniD46SmVd .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniD46SmVd .mbr-shop .filter-by-pu,
.cid-rniD46SmVd .mbr-shop .filter-by-pd,
.cid-rniD46SmVd .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniD46SmVd .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniD46SmVd .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniD46SmVd .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniD46SmVd .mbr-shop .galleryItem h4,
.cid-rniD46SmVd .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniD46SmVd .mbr-shop .galleryItem h5,
.cid-rniD46SmVd .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-rniD46SmVd .mbr-shop .galleryItem p,
.cid-rniD46SmVd .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-rniD46SmVd .mbr-shop .item-button {
  text-align: center;
}
.cid-rniD46SmVd .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniD46SmVd .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniD46SmVd .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniD46SmVd .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniD46SmVd .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniD46SmVd .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniD46SmVd .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniD46SmVd .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniD46SmVd .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniD46SmVd .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniD46SmVd .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniD46SmVd .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniD46SmVd .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniD46SmVd .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-rniD46SmVd .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniD46SmVd .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniD46SmVd .mbr-shop .range-controls {
  position: relative;
}
.cid-rniD46SmVd .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniD46SmVd .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniD46SmVd .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniD46SmVd .mbr-shop .toggle:hover,
.cid-rniD46SmVd .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniD46SmVd .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniD46SmVd .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniD46SmVd .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniD46SmVd .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniD46SmVd .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniD46SmVd .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniD46SmVd .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniD46SmVd .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniD46SmVd .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniD46SmVd .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniD46SmVd .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniD46SmVd .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniD46SmVd .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniD46SmVd .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniD46SmVd .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniD46SmVd .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniD46SmVd .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniD46SmVd .mbr-shop .shop-items .onsale,
.cid-rniD46SmVd .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniD46SmVd .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniD46SmVd .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniD46SmVd .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniD46SmVd .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniD46SmVd .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniD46SmVd .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniD46SmVd .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniD46SmVd .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniD46SmVd .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniD46SmVd .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniD46SmVd .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniD46SmVd .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniD46SmVd .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniD46SmVd .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniD46SmVd .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniD46SmVd .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniD46SmVd .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniD46SmVd .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniD46SmVd .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniD46SmVd .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniD46SmVd .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniD46SmVd .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniD46SmVd .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniD46SmVd .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniD46SmVd .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniD46SmVd .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniD46SmVd .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniD46SmVd .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniD46SmVd .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniD46SmVd .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniD46SmVd .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniD46SmVd .range-controls {
    display: block !important;
  }
}
.cid-rniD46SmVd .onsale {
  color: #ffffff;
}
.cid-rniGLeozLJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniGLeozLJ .container-fluid {
  padding: 0 3rem;
}
.cid-rniGLeozLJ .media-container-column {
  padding: 0 2rem;
}
.cid-rniGLeozLJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniGLeozLJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniGLeozLJ .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniGSmZNnb {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniGSmZNnb .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniGSmZNnb .mbr-shop .row {
  margin: 0;
}
.cid-rniGSmZNnb .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniGSmZNnb .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniGSmZNnb .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniGSmZNnb .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniGSmZNnb .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniGSmZNnb .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniGSmZNnb .mbr-shop .hide-modal {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniGSmZNnb .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniGSmZNnb .mbr-shop .filter-by-pu,
.cid-rniGSmZNnb .mbr-shop .filter-by-pd,
.cid-rniGSmZNnb .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniGSmZNnb .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniGSmZNnb .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem h4,
.cid-rniGSmZNnb .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem h5,
.cid-rniGSmZNnb .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-rniGSmZNnb .mbr-shop .galleryItem p,
.cid-rniGSmZNnb .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-rniGSmZNnb .mbr-shop .item-button {
  text-align: center;
}
.cid-rniGSmZNnb .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniGSmZNnb .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniGSmZNnb .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniGSmZNnb .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniGSmZNnb .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniGSmZNnb .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniGSmZNnb .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniGSmZNnb .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniGSmZNnb .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniGSmZNnb .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniGSmZNnb .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-rniGSmZNnb .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniGSmZNnb .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniGSmZNnb .mbr-shop .range-controls {
  position: relative;
}
.cid-rniGSmZNnb .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniGSmZNnb .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniGSmZNnb .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniGSmZNnb .mbr-shop .toggle:hover,
.cid-rniGSmZNnb .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniGSmZNnb .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniGSmZNnb .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniGSmZNnb .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniGSmZNnb .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniGSmZNnb .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniGSmZNnb .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniGSmZNnb .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniGSmZNnb .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniGSmZNnb .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniGSmZNnb .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniGSmZNnb .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniGSmZNnb .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniGSmZNnb .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniGSmZNnb .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniGSmZNnb .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniGSmZNnb .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniGSmZNnb .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniGSmZNnb .mbr-shop .shop-items .onsale,
.cid-rniGSmZNnb .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniGSmZNnb .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniGSmZNnb .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniGSmZNnb .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniGSmZNnb .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniGSmZNnb .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniGSmZNnb .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniGSmZNnb .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniGSmZNnb .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniGSmZNnb .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniGSmZNnb .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniGSmZNnb .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniGSmZNnb .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniGSmZNnb .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniGSmZNnb .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniGSmZNnb .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniGSmZNnb .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniGSmZNnb .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniGSmZNnb .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniGSmZNnb .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniGSmZNnb .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniGSmZNnb .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniGSmZNnb .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniGSmZNnb .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniGSmZNnb .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniGSmZNnb .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniGSmZNnb .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniGSmZNnb .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniGSmZNnb .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniGSmZNnb .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniGSmZNnb .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniGSmZNnb .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniGSmZNnb .range-controls {
    display: block !important;
  }
}
.cid-rniGSmZNnb .onsale {
  color: #ffffff;
}
.cid-rniIQDks3H {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniIQDks3H .container-fluid {
  padding: 0 3rem;
}
.cid-rniIQDks3H .media-container-column {
  padding: 0 2rem;
}
.cid-rniIQDks3H .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniIQDks3H .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniIQDks3H .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniISMqc8V {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniISMqc8V .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniISMqc8V .mbr-shop .row {
  margin: 0;
}
.cid-rniISMqc8V .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniISMqc8V .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniISMqc8V .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniISMqc8V .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniISMqc8V .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniISMqc8V .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniISMqc8V .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniISMqc8V .mbr-shop .hide-modal {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniISMqc8V .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniISMqc8V .mbr-shop .filter-by-pu,
.cid-rniISMqc8V .mbr-shop .filter-by-pd,
.cid-rniISMqc8V .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniISMqc8V .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniISMqc8V .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniISMqc8V .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniISMqc8V .mbr-shop .galleryItem h4,
.cid-rniISMqc8V .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniISMqc8V .mbr-shop .galleryItem h5,
.cid-rniISMqc8V .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-rniISMqc8V .mbr-shop .galleryItem p,
.cid-rniISMqc8V .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-rniISMqc8V .mbr-shop .item-button {
  text-align: center;
}
.cid-rniISMqc8V .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniISMqc8V .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniISMqc8V .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniISMqc8V .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniISMqc8V .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniISMqc8V .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniISMqc8V .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniISMqc8V .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniISMqc8V .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniISMqc8V .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniISMqc8V .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniISMqc8V .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniISMqc8V .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniISMqc8V .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-rniISMqc8V .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniISMqc8V .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniISMqc8V .mbr-shop .range-controls {
  position: relative;
}
.cid-rniISMqc8V .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniISMqc8V .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniISMqc8V .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniISMqc8V .mbr-shop .toggle:hover,
.cid-rniISMqc8V .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniISMqc8V .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniISMqc8V .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniISMqc8V .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniISMqc8V .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniISMqc8V .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniISMqc8V .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniISMqc8V .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniISMqc8V .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniISMqc8V .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniISMqc8V .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniISMqc8V .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniISMqc8V .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniISMqc8V .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniISMqc8V .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniISMqc8V .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniISMqc8V .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniISMqc8V .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniISMqc8V .mbr-shop .shop-items .onsale,
.cid-rniISMqc8V .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniISMqc8V .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniISMqc8V .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniISMqc8V .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniISMqc8V .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniISMqc8V .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniISMqc8V .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniISMqc8V .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniISMqc8V .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniISMqc8V .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniISMqc8V .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniISMqc8V .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniISMqc8V .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniISMqc8V .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniISMqc8V .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniISMqc8V .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniISMqc8V .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniISMqc8V .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniISMqc8V .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniISMqc8V .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniISMqc8V .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniISMqc8V .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniISMqc8V .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniISMqc8V .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniISMqc8V .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniISMqc8V .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniISMqc8V .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniISMqc8V .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniISMqc8V .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniISMqc8V .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniISMqc8V .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniISMqc8V .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniISMqc8V .range-controls {
    display: block !important;
  }
}
.cid-rniISMqc8V .onsale {
  color: #ffffff;
}
.cid-rniJwzgvin {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniJwzgvin .container-fluid {
  padding: 0 3rem;
}
.cid-rniJwzgvin .media-container-column {
  padding: 0 2rem;
}
.cid-rniJwzgvin .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniJwzgvin .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniJwzgvin .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniJyljoLP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniJyljoLP .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniJyljoLP .mbr-shop .row {
  margin: 0;
}
.cid-rniJyljoLP .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniJyljoLP .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniJyljoLP .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniJyljoLP .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniJyljoLP .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniJyljoLP .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniJyljoLP .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniJyljoLP .mbr-shop .hide-modal {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniJyljoLP .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniJyljoLP .mbr-shop .filter-by-pu,
.cid-rniJyljoLP .mbr-shop .filter-by-pd,
.cid-rniJyljoLP .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniJyljoLP .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniJyljoLP .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniJyljoLP .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniJyljoLP .mbr-shop .galleryItem h4,
.cid-rniJyljoLP .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniJyljoLP .mbr-shop .galleryItem h5,
.cid-rniJyljoLP .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-rniJyljoLP .mbr-shop .galleryItem p,
.cid-rniJyljoLP .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-rniJyljoLP .mbr-shop .item-button {
  text-align: center;
}
.cid-rniJyljoLP .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniJyljoLP .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniJyljoLP .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniJyljoLP .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniJyljoLP .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniJyljoLP .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniJyljoLP .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniJyljoLP .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniJyljoLP .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniJyljoLP .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniJyljoLP .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniJyljoLP .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniJyljoLP .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniJyljoLP .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-rniJyljoLP .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniJyljoLP .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniJyljoLP .mbr-shop .range-controls {
  position: relative;
}
.cid-rniJyljoLP .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniJyljoLP .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniJyljoLP .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniJyljoLP .mbr-shop .toggle:hover,
.cid-rniJyljoLP .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniJyljoLP .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniJyljoLP .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniJyljoLP .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniJyljoLP .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniJyljoLP .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniJyljoLP .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniJyljoLP .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniJyljoLP .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniJyljoLP .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniJyljoLP .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniJyljoLP .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniJyljoLP .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniJyljoLP .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniJyljoLP .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniJyljoLP .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniJyljoLP .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniJyljoLP .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniJyljoLP .mbr-shop .shop-items .onsale,
.cid-rniJyljoLP .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniJyljoLP .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniJyljoLP .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniJyljoLP .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniJyljoLP .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniJyljoLP .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniJyljoLP .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniJyljoLP .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniJyljoLP .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniJyljoLP .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniJyljoLP .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniJyljoLP .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniJyljoLP .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniJyljoLP .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniJyljoLP .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniJyljoLP .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniJyljoLP .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniJyljoLP .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniJyljoLP .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniJyljoLP .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniJyljoLP .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniJyljoLP .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniJyljoLP .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniJyljoLP .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniJyljoLP .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniJyljoLP .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniJyljoLP .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniJyljoLP .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniJyljoLP .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniJyljoLP .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniJyljoLP .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniJyljoLP .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniJyljoLP .range-controls {
    display: block !important;
  }
}
.cid-rniJyljoLP .onsale {
  color: #ffffff;
}
.cid-rniKDwxqT1 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniKDwxqT1 .container-fluid {
  padding: 0 3rem;
}
.cid-rniKDwxqT1 .media-container-column {
  padding: 0 2rem;
}
.cid-rniKDwxqT1 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniKDwxqT1 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniKDwxqT1 .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniKFc8WBE {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniKFc8WBE .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniKFc8WBE .mbr-shop .row {
  margin: 0;
}
.cid-rniKFc8WBE .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniKFc8WBE .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniKFc8WBE .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniKFc8WBE .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniKFc8WBE .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniKFc8WBE .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniKFc8WBE .mbr-shop .hide-modal {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKFc8WBE .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniKFc8WBE .mbr-shop .filter-by-pu,
.cid-rniKFc8WBE .mbr-shop .filter-by-pd,
.cid-rniKFc8WBE .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniKFc8WBE .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniKFc8WBE .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem h4,
.cid-rniKFc8WBE .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem h5,
.cid-rniKFc8WBE .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-rniKFc8WBE .mbr-shop .galleryItem p,
.cid-rniKFc8WBE .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-rniKFc8WBE .mbr-shop .item-button {
  text-align: center;
}
.cid-rniKFc8WBE .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniKFc8WBE .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniKFc8WBE .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniKFc8WBE .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniKFc8WBE .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniKFc8WBE .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniKFc8WBE .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniKFc8WBE .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniKFc8WBE .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniKFc8WBE .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniKFc8WBE .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-rniKFc8WBE .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniKFc8WBE .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniKFc8WBE .mbr-shop .range-controls {
  position: relative;
}
.cid-rniKFc8WBE .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniKFc8WBE .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniKFc8WBE .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniKFc8WBE .mbr-shop .toggle:hover,
.cid-rniKFc8WBE .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniKFc8WBE .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniKFc8WBE .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniKFc8WBE .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniKFc8WBE .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniKFc8WBE .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniKFc8WBE .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniKFc8WBE .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniKFc8WBE .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniKFc8WBE .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniKFc8WBE .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniKFc8WBE .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniKFc8WBE .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniKFc8WBE .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKFc8WBE .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKFc8WBE .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniKFc8WBE .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniKFc8WBE .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniKFc8WBE .mbr-shop .shop-items .onsale,
.cid-rniKFc8WBE .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniKFc8WBE .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniKFc8WBE .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniKFc8WBE .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniKFc8WBE .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniKFc8WBE .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniKFc8WBE .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniKFc8WBE .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniKFc8WBE .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniKFc8WBE .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniKFc8WBE .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniKFc8WBE .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniKFc8WBE .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniKFc8WBE .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniKFc8WBE .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniKFc8WBE .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniKFc8WBE .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniKFc8WBE .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniKFc8WBE .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniKFc8WBE .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniKFc8WBE .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniKFc8WBE .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniKFc8WBE .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniKFc8WBE .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniKFc8WBE .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniKFc8WBE .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniKFc8WBE .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniKFc8WBE .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniKFc8WBE .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniKFc8WBE .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniKFc8WBE .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniKFc8WBE .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniKFc8WBE .range-controls {
    display: block !important;
  }
}
.cid-rniKFc8WBE .onsale {
  color: #ffffff;
}
.cid-rniKGB613w {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniKGB613w .container-fluid {
  padding: 0 3rem;
}
.cid-rniKGB613w .media-container-column {
  padding: 0 2rem;
}
.cid-rniKGB613w .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniKGB613w .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniKGB613w .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniKIrkytd {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rniKIrkytd .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniKIrkytd .mbr-shop .row {
  margin: 0;
}
.cid-rniKIrkytd .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniKIrkytd .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniKIrkytd .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniKIrkytd .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniKIrkytd .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniKIrkytd .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniKIrkytd .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniKIrkytd .mbr-shop .hide-modal {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKIrkytd .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniKIrkytd .mbr-shop .filter-by-pu,
.cid-rniKIrkytd .mbr-shop .filter-by-pd,
.cid-rniKIrkytd .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniKIrkytd .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniKIrkytd .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniKIrkytd .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniKIrkytd .mbr-shop .galleryItem h4,
.cid-rniKIrkytd .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniKIrkytd .mbr-shop .galleryItem h5,
.cid-rniKIrkytd .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-rniKIrkytd .mbr-shop .galleryItem p,
.cid-rniKIrkytd .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-rniKIrkytd .mbr-shop .item-button {
  text-align: center;
}
.cid-rniKIrkytd .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniKIrkytd .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniKIrkytd .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniKIrkytd .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniKIrkytd .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniKIrkytd .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniKIrkytd .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniKIrkytd .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniKIrkytd .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniKIrkytd .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniKIrkytd .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniKIrkytd .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniKIrkytd .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniKIrkytd .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-rniKIrkytd .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniKIrkytd .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniKIrkytd .mbr-shop .range-controls {
  position: relative;
}
.cid-rniKIrkytd .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniKIrkytd .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniKIrkytd .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniKIrkytd .mbr-shop .toggle:hover,
.cid-rniKIrkytd .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniKIrkytd .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniKIrkytd .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniKIrkytd .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniKIrkytd .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniKIrkytd .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniKIrkytd .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniKIrkytd .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniKIrkytd .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniKIrkytd .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniKIrkytd .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniKIrkytd .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniKIrkytd .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniKIrkytd .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKIrkytd .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniKIrkytd .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniKIrkytd .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniKIrkytd .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniKIrkytd .mbr-shop .shop-items .onsale,
.cid-rniKIrkytd .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniKIrkytd .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniKIrkytd .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniKIrkytd .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniKIrkytd .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniKIrkytd .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniKIrkytd .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniKIrkytd .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniKIrkytd .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniKIrkytd .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniKIrkytd .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniKIrkytd .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniKIrkytd .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniKIrkytd .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniKIrkytd .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniKIrkytd .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniKIrkytd .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniKIrkytd .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniKIrkytd .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniKIrkytd .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniKIrkytd .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniKIrkytd .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniKIrkytd .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniKIrkytd .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniKIrkytd .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniKIrkytd .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniKIrkytd .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniKIrkytd .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniKIrkytd .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniKIrkytd .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniKIrkytd .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniKIrkytd .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniKIrkytd .range-controls {
    display: block !important;
  }
}
.cid-rniKIrkytd .onsale {
  color: #ffffff;
}
.cid-rniLFGI5sO {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rniLFGI5sO .container-fluid {
  padding: 0 3rem;
}
.cid-rniLFGI5sO .media-container-column {
  padding: 0 2rem;
}
.cid-rniLFGI5sO .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rniLFGI5sO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rniLFGI5sO .mbr-section-subtitle {
  color: #84510e;
}
.cid-rniLM0YIao {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rniLM0YIao .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rniLM0YIao .mbr-shop .row {
  margin: 0;
}
.cid-rniLM0YIao .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rniLM0YIao .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rniLM0YIao .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rniLM0YIao .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rniLM0YIao .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rniLM0YIao .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rniLM0YIao .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rniLM0YIao .mbr-shop .hide-modal {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniLM0YIao .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rniLM0YIao .mbr-shop .filter-by-pu,
.cid-rniLM0YIao .mbr-shop .filter-by-pd,
.cid-rniLM0YIao .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rniLM0YIao .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rniLM0YIao .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rniLM0YIao .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rniLM0YIao .mbr-shop .galleryItem h4,
.cid-rniLM0YIao .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rniLM0YIao .mbr-shop .galleryItem h5,
.cid-rniLM0YIao .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-rniLM0YIao .mbr-shop .galleryItem p,
.cid-rniLM0YIao .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-rniLM0YIao .mbr-shop .item-button {
  text-align: center;
}
.cid-rniLM0YIao .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rniLM0YIao .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rniLM0YIao .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rniLM0YIao .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rniLM0YIao .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rniLM0YIao .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rniLM0YIao .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rniLM0YIao .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item__hided h4,
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item__hided h5,
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rniLM0YIao .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rniLM0YIao .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rniLM0YIao .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rniLM0YIao .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rniLM0YIao .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rniLM0YIao .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-rniLM0YIao .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rniLM0YIao .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rniLM0YIao .mbr-shop .range-controls {
  position: relative;
}
.cid-rniLM0YIao .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rniLM0YIao .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rniLM0YIao .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rniLM0YIao .mbr-shop .toggle:hover,
.cid-rniLM0YIao .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rniLM0YIao .mbr-shop .min-toggle {
  left: 0;
}
.cid-rniLM0YIao .mbr-shop .max-toggle {
  right: 0;
}
.cid-rniLM0YIao .mbr-shop .hided-by-price {
  display: none;
}
.cid-rniLM0YIao .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rniLM0YIao .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rniLM0YIao .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rniLM0YIao .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rniLM0YIao .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rniLM0YIao .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rniLM0YIao .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rniLM0YIao .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rniLM0YIao .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniLM0YIao .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniLM0YIao .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rniLM0YIao .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rniLM0YIao .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rniLM0YIao .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rniLM0YIao .mbr-shop .shop-items .onsale,
.cid-rniLM0YIao .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rniLM0YIao .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rniLM0YIao .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rniLM0YIao .mbr-shop .price-range {
  display: inline-block;
}
.cid-rniLM0YIao .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rniLM0YIao .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rniLM0YIao .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rniLM0YIao .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rniLM0YIao .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rniLM0YIao .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rniLM0YIao .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rniLM0YIao .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rniLM0YIao .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rniLM0YIao .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rniLM0YIao .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rniLM0YIao .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rniLM0YIao .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rniLM0YIao .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rniLM0YIao .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rniLM0YIao .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rniLM0YIao .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rniLM0YIao .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rniLM0YIao .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rniLM0YIao .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rniLM0YIao .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rniLM0YIao .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rniLM0YIao .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rniLM0YIao .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rniLM0YIao .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rniLM0YIao .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rniLM0YIao .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rniLM0YIao .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rniLM0YIao .range-controls {
    display: block !important;
  }
}
.cid-rniLM0YIao .onsale {
  color: #ffffff;
}
.cid-rJx79Vlvjq {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rJx79Vlvjq .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rJx79Vlvjq .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rJx79Vlvjq .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rJx79Vlvjq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rJx79Vlvjq .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rJx79Vlvjq .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rJx79Vlvjq .card .panel-body {
  color: #767676;
}
.cid-rJx79Vlvjq H2 {
  color: #84510e;
}
.cid-rJx79Vlvjq H4 {
  color: #5b686b;
}
.cid-qTuJ5pCvyS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qTuJ5pCvyS .title {
  margin-bottom: 2rem;
}
.cid-qTuJ5pCvyS .mbr-section-subtitle {
  color: #767676;
}
.cid-qTuJ5pCvyS a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qTuJ5pCvyS a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qTuJ5pCvyS .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qTuJ5pCvyS .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qTuJ5pCvyS H2 {
  color: #84510e;
}
.cid-qTuJ5rFz7p {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-qTuJ5rFz7p .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-qTuJ5rFz7p .social-list a:focus {
  text-decoration: none;
}
.cid-qTuJ5rFz7p H2 {
  color: #ffffff;
}
.cid-qTuJ5vlCJQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qTuJ5vlCJQ .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qTuJ5vlCJQ .content {
    text-align: center;
  }
  .cid-qTuJ5vlCJQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-qTuJ5vlCJQ .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-qTuJ5vlCJQ .input-group-btn {
  display: inline-block;
}
.cid-qTuJ5vlCJQ .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-qTuJ5vlCJQ .img-logo img {
  height: 6rem;
}
.cid-qTuJ5vlCJQ [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-qTuJ5vlCJQ [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-qTuJ5vlCJQ .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qTuJ5vlCJQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qTuJ5vlCJQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-qTuJ5vlCJQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qTuJ5vlCJQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-qTuJ5vlCJQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qTuJ5vlCJQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qTuJ5vlCJQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qTuJ5vlCJQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qTuJ5vlCJQ form .input-group input.form-control,
.cid-qTuJ5vlCJQ form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-qTuJ5vlCJQ .form-inline {
  justify-content: center;
}
.cid-qTuJ5vlCJQ .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qTuJ5vlCJQ .foot-logo {
    text-align: center !important;
  }
  .cid-qTuJ5vlCJQ .foot-title {
    text-align: center !important;
  }
  .cid-qTuJ5vlCJQ .mbr-text {
    text-align: center !important;
  }
}
.cid-qTuJ5yWzM3 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qTuJ5yWzM3 .container-fluid {
  padding: 0 3rem;
}
.cid-qTuJ5yWzM3 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-qTuJ5yWzM3 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-qTuJ5yWzM3 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-qTuJ5yWzM3 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-qTuJ5yWzM3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qTuJ5yWzM3 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-qTuJ5yWzM3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qTuJ5yWzM3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-qTuJ5Ct2yf {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-qTuJ5Ct2yf .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qTuJ5Ct2yf .btn-social {
  border: none !important;
}
.cid-qTuJ5Ct2yf [class^="socicon-"]:before,
.cid-qTuJ5Ct2yf [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qTuJ5Ct2yf .btn {
    font-size: 20px !important;
  }
}
.cid-qTuJ5Ct2yf .mbr-section-title {
  color: #ffffff;
}
.cid-rRtPPHWOlK .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;
  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-rRtPPHWOlK .nav-item:focus,
.cid-rRtPPHWOlK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rRtPPHWOlK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rRtPPHWOlK .nav-item .nav-link {
    position: relative;
  }
  .cid-rRtPPHWOlK .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #ff5ecb);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rRtPPHWOlK .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rRtPPHWOlK .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRtPPHWOlK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rRtPPHWOlK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRtPPHWOlK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRtPPHWOlK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28d4e2;
}
.cid-rRtPPHWOlK .navbar.opened {
  transition: all .3s;
  background: #28d4e2 !important;
}
.cid-rRtPPHWOlK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rRtPPHWOlK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rRtPPHWOlK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rRtPPHWOlK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rRtPPHWOlK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRtPPHWOlK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRtPPHWOlK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRtPPHWOlK .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-rRtPPHWOlK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRtPPHWOlK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRtPPHWOlK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rRtPPHWOlK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rRtPPHWOlK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRtPPHWOlK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRtPPHWOlK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRtPPHWOlK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRtPPHWOlK .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-rRtPPHWOlK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRtPPHWOlK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRtPPHWOlK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rRtPPHWOlK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rRtPPHWOlK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rRtPPHWOlK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rRtPPHWOlK .navbar.navbar-short {
  background: #28d4e2 !important;
  min-height: 60px;
}
.cid-rRtPPHWOlK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRtPPHWOlK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRtPPHWOlK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rRtPPHWOlK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRtPPHWOlK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRtPPHWOlK .dropdown-item.active,
.cid-rRtPPHWOlK .dropdown-item:active {
  background-color: transparent;
}
.cid-rRtPPHWOlK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRtPPHWOlK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRtPPHWOlK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRtPPHWOlK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28d4e2;
}
.cid-rRtPPHWOlK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRtPPHWOlK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRtPPHWOlK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rRtPPHWOlK .navbar-buttons {
  text-align: center;
}
.cid-rRtPPHWOlK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rRtPPHWOlK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rRtPPHWOlK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRtPPHWOlK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRtPPHWOlK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRtPPHWOlK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRtPPHWOlK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRtPPHWOlK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rRtPPHWOlK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rRtPPHWOlK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRtPPHWOlK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rRtPPHWOlK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rRtPPHWOlK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rRtPPHWOlK .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rRtPPHWOlK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPPHWOlK .navbar {
    height: 77px;
  }
  .cid-rRtPPHWOlK .navbar.opened {
    height: auto;
  }
  .cid-rRtPPHWOlK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRtPPKR9Yz {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRtPPKR9Yz H1 {
  color: #986ee7;
}
.cid-rRtPPKR9Yz H3 {
  color: #767676;
}
.cid-rRtPPKR9Yz P {
  color: #767676;
}
.cid-rRtPPKR9Yz SPAN {
  color: #84510e;
}
.cid-rRtPPMTJ0l {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #00e9f2;
}
.cid-rRtPPMTJ0l .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPPMTJ0l .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPPMTJ0l .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rRtPPMTJ0l .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPPMTJ0l .mbr-section-title SPAN {
  color: #84510e;
}
.cid-rRtPPMTJ0l .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPPPbqJR {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #00e9f2;
}
.cid-rRtPPQERid {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPPQERid .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPPQERid .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPPQERid .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPPQERid .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPPQERid .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPPTRBQu {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPPTRBQu .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPPTRBQu .mbr-shop .row {
  margin: 0;
}
.cid-rRtPPTRBQu .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPPTRBQu .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPPTRBQu .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPPTRBQu .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPPTRBQu .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPPTRBQu .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPPTRBQu .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPPTRBQu .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPPTRBQu .mbr-shop .filter-by-pu,
.cid-rRtPPTRBQu .mbr-shop .filter-by-pd,
.cid-rRtPPTRBQu .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPPTRBQu .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPPTRBQu .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem h4,
.cid-rRtPPTRBQu .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem h5,
.cid-rRtPPTRBQu .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-rRtPPTRBQu .mbr-shop .galleryItem p,
.cid-rRtPPTRBQu .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-rRtPPTRBQu .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPPTRBQu .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPPTRBQu .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPPTRBQu .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPPTRBQu .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPPTRBQu .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPPTRBQu .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPPTRBQu .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPPTRBQu .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPPTRBQu .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPPTRBQu .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPPTRBQu .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-rRtPPTRBQu .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPPTRBQu .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPPTRBQu .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPPTRBQu .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPPTRBQu .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPPTRBQu .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPPTRBQu .mbr-shop .toggle:hover,
.cid-rRtPPTRBQu .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPPTRBQu .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPPTRBQu .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPPTRBQu .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPPTRBQu .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPPTRBQu .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPPTRBQu .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPPTRBQu .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPPTRBQu .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPPTRBQu .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPPTRBQu .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPPTRBQu .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPPTRBQu .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPPTRBQu .mbr-shop .shop-items .onsale,
.cid-rRtPPTRBQu .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPPTRBQu .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPPTRBQu .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPPTRBQu .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPPTRBQu .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPPTRBQu .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPPTRBQu .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPPTRBQu .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPPTRBQu .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPPTRBQu .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPPTRBQu .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPPTRBQu .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPPTRBQu .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPPTRBQu .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPPTRBQu .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPPTRBQu .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPPTRBQu .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPPTRBQu .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPPTRBQu .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPPTRBQu .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPPTRBQu .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPPTRBQu .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPPTRBQu .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPPTRBQu .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPPTRBQu .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPPTRBQu .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPPTRBQu .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPPTRBQu .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPPTRBQu .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPPTRBQu .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPPTRBQu .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPPTRBQu .range-controls {
    display: block !important;
  }
}
.cid-rRtPPTRBQu .onsale {
  color: #ffffff;
}
.cid-rRtPPZ3S18 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPPZ3S18 .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPPZ3S18 .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPPZ3S18 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPPZ3S18 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPPZ3S18 .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQ0tp80 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rRtPQ0tp80 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQ0tp80 .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQ0tp80 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQ0tp80 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQ0tp80 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQ0tp80 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQ0tp80 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQ0tp80 .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ0tp80 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQ0tp80 .mbr-shop .filter-by-pu,
.cid-rRtPQ0tp80 .mbr-shop .filter-by-pd,
.cid-rRtPQ0tp80 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQ0tp80 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQ0tp80 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem h4,
.cid-rRtPQ0tp80 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem h5,
.cid-rRtPQ0tp80 .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-rRtPQ0tp80 .mbr-shop .galleryItem p,
.cid-rRtPQ0tp80 .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-rRtPQ0tp80 .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQ0tp80 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQ0tp80 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQ0tp80 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQ0tp80 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQ0tp80 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQ0tp80 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQ0tp80 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQ0tp80 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQ0tp80 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQ0tp80 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQ0tp80 .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-rRtPQ0tp80 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQ0tp80 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQ0tp80 .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQ0tp80 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQ0tp80 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQ0tp80 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQ0tp80 .mbr-shop .toggle:hover,
.cid-rRtPQ0tp80 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQ0tp80 .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQ0tp80 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQ0tp80 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQ0tp80 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ0tp80 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ0tp80 .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQ0tp80 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQ0tp80 .mbr-shop .shop-items .onsale,
.cid-rRtPQ0tp80 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQ0tp80 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQ0tp80 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQ0tp80 .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQ0tp80 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQ0tp80 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQ0tp80 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQ0tp80 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQ0tp80 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQ0tp80 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQ0tp80 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQ0tp80 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQ0tp80 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQ0tp80 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQ0tp80 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQ0tp80 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQ0tp80 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQ0tp80 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQ0tp80 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQ0tp80 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQ0tp80 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQ0tp80 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQ0tp80 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQ0tp80 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQ0tp80 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQ0tp80 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQ0tp80 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQ0tp80 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQ0tp80 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQ0tp80 .range-controls {
    display: block !important;
  }
}
.cid-rRtPQ0tp80 .onsale {
  color: #ffffff;
}
.cid-rRtPQ7tAII {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQ7tAII .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQ7tAII .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQ7tAII .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQ7tAII .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQ7tAII .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQ8Vl2H {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQ8Vl2H .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQ8Vl2H .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQ8Vl2H .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQ8Vl2H .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQ8Vl2H .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQ8Vl2H .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQ8Vl2H .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQ8Vl2H .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ8Vl2H .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQ8Vl2H .mbr-shop .filter-by-pu,
.cid-rRtPQ8Vl2H .mbr-shop .filter-by-pd,
.cid-rRtPQ8Vl2H .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQ8Vl2H .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQ8Vl2H .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem h4,
.cid-rRtPQ8Vl2H .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem h5,
.cid-rRtPQ8Vl2H .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-rRtPQ8Vl2H .mbr-shop .galleryItem p,
.cid-rRtPQ8Vl2H .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-rRtPQ8Vl2H .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQ8Vl2H .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQ8Vl2H .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQ8Vl2H .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQ8Vl2H .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQ8Vl2H .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQ8Vl2H .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQ8Vl2H .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQ8Vl2H .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQ8Vl2H .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQ8Vl2H .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQ8Vl2H .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-rRtPQ8Vl2H .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQ8Vl2H .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQ8Vl2H .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQ8Vl2H .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQ8Vl2H .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQ8Vl2H .mbr-shop .toggle:hover,
.cid-rRtPQ8Vl2H .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQ8Vl2H .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQ8Vl2H .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQ8Vl2H .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ8Vl2H .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQ8Vl2H .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQ8Vl2H .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQ8Vl2H .mbr-shop .shop-items .onsale,
.cid-rRtPQ8Vl2H .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQ8Vl2H .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQ8Vl2H .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQ8Vl2H .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQ8Vl2H .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQ8Vl2H .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQ8Vl2H .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQ8Vl2H .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQ8Vl2H .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQ8Vl2H .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQ8Vl2H .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQ8Vl2H .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQ8Vl2H .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQ8Vl2H .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQ8Vl2H .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQ8Vl2H .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQ8Vl2H .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQ8Vl2H .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQ8Vl2H .range-controls {
    display: block !important;
  }
}
.cid-rRtPQ8Vl2H .onsale {
  color: #ffffff;
}
.cid-rRtPQdbrta {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQdbrta .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQdbrta .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQdbrta .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQdbrta .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQdbrta .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQeQHfd {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQeQHfd .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQeQHfd .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQeQHfd .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQeQHfd .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQeQHfd .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQeQHfd .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQeQHfd .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQeQHfd .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQeQHfd .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQeQHfd .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQeQHfd .mbr-shop .filter-by-pu,
.cid-rRtPQeQHfd .mbr-shop .filter-by-pd,
.cid-rRtPQeQHfd .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQeQHfd .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQeQHfd .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem h4,
.cid-rRtPQeQHfd .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem h5,
.cid-rRtPQeQHfd .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-rRtPQeQHfd .mbr-shop .galleryItem p,
.cid-rRtPQeQHfd .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-rRtPQeQHfd .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQeQHfd .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQeQHfd .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQeQHfd .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQeQHfd .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQeQHfd .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQeQHfd .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQeQHfd .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQeQHfd .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQeQHfd .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQeQHfd .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQeQHfd .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-rRtPQeQHfd .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQeQHfd .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQeQHfd .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQeQHfd .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQeQHfd .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQeQHfd .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQeQHfd .mbr-shop .toggle:hover,
.cid-rRtPQeQHfd .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQeQHfd .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQeQHfd .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQeQHfd .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQeQHfd .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQeQHfd .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQeQHfd .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQeQHfd .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQeQHfd .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQeQHfd .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQeQHfd .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQeQHfd .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQeQHfd .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQeQHfd .mbr-shop .shop-items .onsale,
.cid-rRtPQeQHfd .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQeQHfd .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQeQHfd .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQeQHfd .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQeQHfd .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQeQHfd .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQeQHfd .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQeQHfd .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQeQHfd .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQeQHfd .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQeQHfd .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQeQHfd .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQeQHfd .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQeQHfd .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQeQHfd .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQeQHfd .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQeQHfd .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQeQHfd .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQeQHfd .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQeQHfd .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQeQHfd .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQeQHfd .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQeQHfd .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQeQHfd .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQeQHfd .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQeQHfd .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQeQHfd .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQeQHfd .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQeQHfd .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQeQHfd .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQeQHfd .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQeQHfd .range-controls {
    display: block !important;
  }
}
.cid-rRtPQeQHfd .onsale {
  color: #ffffff;
}
.cid-rRtPQjNlxF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQjNlxF .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQjNlxF .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQjNlxF .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQjNlxF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQjNlxF .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQm2u3q {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQm2u3q .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQm2u3q .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQm2u3q .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQm2u3q .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQm2u3q .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQm2u3q .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQm2u3q .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQm2u3q .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQm2u3q .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQm2u3q .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQm2u3q .mbr-shop .filter-by-pu,
.cid-rRtPQm2u3q .mbr-shop .filter-by-pd,
.cid-rRtPQm2u3q .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQm2u3q .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQm2u3q .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem h4,
.cid-rRtPQm2u3q .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem h5,
.cid-rRtPQm2u3q .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-rRtPQm2u3q .mbr-shop .galleryItem p,
.cid-rRtPQm2u3q .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-rRtPQm2u3q .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQm2u3q .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQm2u3q .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQm2u3q .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQm2u3q .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQm2u3q .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQm2u3q .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQm2u3q .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQm2u3q .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQm2u3q .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQm2u3q .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQm2u3q .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-rRtPQm2u3q .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQm2u3q .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQm2u3q .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQm2u3q .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQm2u3q .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQm2u3q .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQm2u3q .mbr-shop .toggle:hover,
.cid-rRtPQm2u3q .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQm2u3q .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQm2u3q .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQm2u3q .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQm2u3q .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQm2u3q .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQm2u3q .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQm2u3q .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQm2u3q .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQm2u3q .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQm2u3q .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQm2u3q .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQm2u3q .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQm2u3q .mbr-shop .shop-items .onsale,
.cid-rRtPQm2u3q .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQm2u3q .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQm2u3q .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQm2u3q .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQm2u3q .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQm2u3q .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQm2u3q .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQm2u3q .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQm2u3q .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQm2u3q .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQm2u3q .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQm2u3q .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQm2u3q .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQm2u3q .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQm2u3q .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQm2u3q .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQm2u3q .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQm2u3q .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQm2u3q .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQm2u3q .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQm2u3q .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQm2u3q .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQm2u3q .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQm2u3q .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQm2u3q .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQm2u3q .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQm2u3q .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQm2u3q .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQm2u3q .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQm2u3q .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQm2u3q .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQm2u3q .range-controls {
    display: block !important;
  }
}
.cid-rRtPQm2u3q .onsale {
  color: #ffffff;
}
.cid-rRtPQqxyoA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQqxyoA .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQqxyoA .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQqxyoA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQqxyoA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQqxyoA .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQscMOq {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQscMOq .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQscMOq .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQscMOq .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQscMOq .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQscMOq .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQscMOq .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQscMOq .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQscMOq .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQscMOq .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQscMOq .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQscMOq .mbr-shop .filter-by-pu,
.cid-rRtPQscMOq .mbr-shop .filter-by-pd,
.cid-rRtPQscMOq .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQscMOq .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQscMOq .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem h4,
.cid-rRtPQscMOq .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem h5,
.cid-rRtPQscMOq .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-rRtPQscMOq .mbr-shop .galleryItem p,
.cid-rRtPQscMOq .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-rRtPQscMOq .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQscMOq .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQscMOq .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQscMOq .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQscMOq .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQscMOq .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQscMOq .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQscMOq .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQscMOq .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQscMOq .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQscMOq .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQscMOq .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-rRtPQscMOq .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQscMOq .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQscMOq .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQscMOq .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQscMOq .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQscMOq .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQscMOq .mbr-shop .toggle:hover,
.cid-rRtPQscMOq .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQscMOq .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQscMOq .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQscMOq .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQscMOq .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQscMOq .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQscMOq .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQscMOq .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQscMOq .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQscMOq .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQscMOq .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQscMOq .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQscMOq .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQscMOq .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQscMOq .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQscMOq .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQscMOq .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQscMOq .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQscMOq .mbr-shop .shop-items .onsale,
.cid-rRtPQscMOq .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQscMOq .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQscMOq .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQscMOq .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQscMOq .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQscMOq .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQscMOq .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQscMOq .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQscMOq .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQscMOq .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQscMOq .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQscMOq .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQscMOq .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQscMOq .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQscMOq .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQscMOq .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQscMOq .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQscMOq .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQscMOq .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQscMOq .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQscMOq .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQscMOq .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQscMOq .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQscMOq .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQscMOq .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQscMOq .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQscMOq .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQscMOq .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQscMOq .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQscMOq .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQscMOq .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQscMOq .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQscMOq .range-controls {
    display: block !important;
  }
}
.cid-rRtPQscMOq .onsale {
  color: #ffffff;
}
.cid-rRtPQxCzPi {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQxCzPi .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQxCzPi .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQxCzPi .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQxCzPi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQxCzPi .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQzCzoY {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQzCzoY .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQzCzoY .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQzCzoY .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQzCzoY .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQzCzoY .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQzCzoY .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQzCzoY .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQzCzoY .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQzCzoY .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQzCzoY .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQzCzoY .mbr-shop .filter-by-pu,
.cid-rRtPQzCzoY .mbr-shop .filter-by-pd,
.cid-rRtPQzCzoY .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQzCzoY .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQzCzoY .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem h4,
.cid-rRtPQzCzoY .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem h5,
.cid-rRtPQzCzoY .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-rRtPQzCzoY .mbr-shop .galleryItem p,
.cid-rRtPQzCzoY .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-rRtPQzCzoY .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQzCzoY .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQzCzoY .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQzCzoY .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQzCzoY .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQzCzoY .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQzCzoY .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQzCzoY .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQzCzoY .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQzCzoY .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQzCzoY .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQzCzoY .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-rRtPQzCzoY .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQzCzoY .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQzCzoY .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQzCzoY .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQzCzoY .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQzCzoY .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQzCzoY .mbr-shop .toggle:hover,
.cid-rRtPQzCzoY .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQzCzoY .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQzCzoY .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQzCzoY .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQzCzoY .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQzCzoY .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQzCzoY .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQzCzoY .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQzCzoY .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQzCzoY .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQzCzoY .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQzCzoY .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQzCzoY .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQzCzoY .mbr-shop .shop-items .onsale,
.cid-rRtPQzCzoY .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQzCzoY .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQzCzoY .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQzCzoY .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQzCzoY .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQzCzoY .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQzCzoY .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQzCzoY .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQzCzoY .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQzCzoY .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQzCzoY .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQzCzoY .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQzCzoY .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQzCzoY .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQzCzoY .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQzCzoY .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQzCzoY .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQzCzoY .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQzCzoY .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQzCzoY .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQzCzoY .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQzCzoY .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQzCzoY .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQzCzoY .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQzCzoY .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQzCzoY .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQzCzoY .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQzCzoY .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQzCzoY .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQzCzoY .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQzCzoY .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQzCzoY .range-controls {
    display: block !important;
  }
}
.cid-rRtPQzCzoY .onsale {
  color: #ffffff;
}
.cid-rRtPQF605R {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQF605R .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQF605R .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQF605R .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQF605R .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQF605R .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQHh2cy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRtPQHh2cy .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQHh2cy .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQHh2cy .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQHh2cy .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQHh2cy .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQHh2cy .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQHh2cy .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQHh2cy .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQHh2cy .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQHh2cy .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQHh2cy .mbr-shop .filter-by-pu,
.cid-rRtPQHh2cy .mbr-shop .filter-by-pd,
.cid-rRtPQHh2cy .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQHh2cy .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQHh2cy .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem h4,
.cid-rRtPQHh2cy .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem h5,
.cid-rRtPQHh2cy .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-rRtPQHh2cy .mbr-shop .galleryItem p,
.cid-rRtPQHh2cy .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-rRtPQHh2cy .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQHh2cy .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQHh2cy .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQHh2cy .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQHh2cy .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQHh2cy .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQHh2cy .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQHh2cy .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQHh2cy .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQHh2cy .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQHh2cy .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQHh2cy .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-rRtPQHh2cy .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQHh2cy .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQHh2cy .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQHh2cy .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQHh2cy .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQHh2cy .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQHh2cy .mbr-shop .toggle:hover,
.cid-rRtPQHh2cy .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQHh2cy .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQHh2cy .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQHh2cy .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQHh2cy .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQHh2cy .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQHh2cy .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQHh2cy .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQHh2cy .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQHh2cy .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQHh2cy .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQHh2cy .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQHh2cy .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQHh2cy .mbr-shop .shop-items .onsale,
.cid-rRtPQHh2cy .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQHh2cy .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQHh2cy .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQHh2cy .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQHh2cy .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQHh2cy .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQHh2cy .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQHh2cy .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQHh2cy .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQHh2cy .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQHh2cy .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQHh2cy .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQHh2cy .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQHh2cy .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQHh2cy .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQHh2cy .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQHh2cy .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQHh2cy .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQHh2cy .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQHh2cy .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQHh2cy .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQHh2cy .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQHh2cy .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQHh2cy .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQHh2cy .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQHh2cy .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQHh2cy .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQHh2cy .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQHh2cy .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQHh2cy .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQHh2cy .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQHh2cy .range-controls {
    display: block !important;
  }
}
.cid-rRtPQHh2cy .onsale {
  color: #ffffff;
}
.cid-rRtPQLYuvw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPQLYuvw .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPQLYuvw .media-container-column {
  padding: 0 2rem;
}
.cid-rRtPQLYuvw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #84510e;
}
@media (max-width: 767px) {
  .cid-rRtPQLYuvw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRtPQLYuvw .mbr-section-subtitle {
  color: #84510e;
}
.cid-rRtPQNTJcx {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rRtPQNTJcx .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rRtPQNTJcx .mbr-shop .row {
  margin: 0;
}
.cid-rRtPQNTJcx .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rRtPQNTJcx .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rRtPQNTJcx .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rRtPQNTJcx .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rRtPQNTJcx .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rRtPQNTJcx .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rRtPQNTJcx .mbr-shop .hide-modal {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQNTJcx .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rRtPQNTJcx .mbr-shop .filter-by-pu,
.cid-rRtPQNTJcx .mbr-shop .filter-by-pd,
.cid-rRtPQNTJcx .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rRtPQNTJcx .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rRtPQNTJcx .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem h4,
.cid-rRtPQNTJcx .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem h5,
.cid-rRtPQNTJcx .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-rRtPQNTJcx .mbr-shop .galleryItem p,
.cid-rRtPQNTJcx .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-rRtPQNTJcx .mbr-shop .item-button {
  text-align: center;
}
.cid-rRtPQNTJcx .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rRtPQNTJcx .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rRtPQNTJcx .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rRtPQNTJcx .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rRtPQNTJcx .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rRtPQNTJcx .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ff18b4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item__hided h4,
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item__hided h5,
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rRtPQNTJcx .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rRtPQNTJcx .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rRtPQNTJcx .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rRtPQNTJcx .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rRtPQNTJcx .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-rRtPQNTJcx .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rRtPQNTJcx .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rRtPQNTJcx .mbr-shop .range-controls {
  position: relative;
}
.cid-rRtPQNTJcx .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rRtPQNTJcx .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rRtPQNTJcx .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rRtPQNTJcx .mbr-shop .toggle:hover,
.cid-rRtPQNTJcx .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rRtPQNTJcx .mbr-shop .min-toggle {
  left: 0;
}
.cid-rRtPQNTJcx .mbr-shop .max-toggle {
  right: 0;
}
.cid-rRtPQNTJcx .mbr-shop .hided-by-price {
  display: none;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rRtPQNTJcx .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rRtPQNTJcx .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rRtPQNTJcx .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rRtPQNTJcx .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQNTJcx .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQNTJcx .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rRtPQNTJcx .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rRtPQNTJcx .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rRtPQNTJcx .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rRtPQNTJcx .mbr-shop .shop-items .onsale,
.cid-rRtPQNTJcx .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rRtPQNTJcx .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rRtPQNTJcx .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rRtPQNTJcx .mbr-shop .price-range {
  display: inline-block;
}
.cid-rRtPQNTJcx .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rRtPQNTJcx .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rRtPQNTJcx .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rRtPQNTJcx .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rRtPQNTJcx .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rRtPQNTJcx .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rRtPQNTJcx .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rRtPQNTJcx .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rRtPQNTJcx .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rRtPQNTJcx .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rRtPQNTJcx .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rRtPQNTJcx .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rRtPQNTJcx .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rRtPQNTJcx .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rRtPQNTJcx .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rRtPQNTJcx .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rRtPQNTJcx .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rRtPQNTJcx .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rRtPQNTJcx .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rRtPQNTJcx .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rRtPQNTJcx .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rRtPQNTJcx .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rRtPQNTJcx .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rRtPQNTJcx .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rRtPQNTJcx .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rRtPQNTJcx .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRtPQNTJcx .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rRtPQNTJcx .range-controls {
    display: block !important;
  }
}
.cid-rRtPQNTJcx .onsale {
  color: #ffffff;
}
.cid-rRtPQThbHt {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}
.cid-rRtPQThbHt .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rRtPQThbHt .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rRtPQThbHt .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rRtPQThbHt .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rRtPQThbHt .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rRtPQThbHt .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rRtPQThbHt .card .panel-body {
  color: #767676;
}
.cid-rRtPQThbHt H2 {
  color: #84510e;
}
.cid-rRtPQThbHt H4 {
  color: #5b686b;
}
.cid-rRtPQVtOX9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rRtPQVtOX9 .title {
  margin-bottom: 2rem;
}
.cid-rRtPQVtOX9 .mbr-section-subtitle {
  color: #767676;
}
.cid-rRtPQVtOX9 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rRtPQVtOX9 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rRtPQVtOX9 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rRtPQVtOX9 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rRtPQVtOX9 H2 {
  color: #84510e;
}
.cid-rRtPQYdCS4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #28d4e2, #28d4e2);
}
.cid-rRtPQYdCS4 .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-rRtPQYdCS4 .social-list a:focus {
  text-decoration: none;
}
.cid-rRtPQYdCS4 H2 {
  color: #ffffff;
}
.cid-rRtPR3lpEH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRtPR3lpEH .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rRtPR3lpEH .content {
    text-align: center;
  }
  .cid-rRtPR3lpEH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rRtPR3lpEH .input-group {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.cid-rRtPR3lpEH .input-group-btn {
  display: inline-block;
}
.cid-rRtPR3lpEH .input-group-btn a.btn {
  margin: 0 !important;
  color: #fff;
}
.cid-rRtPR3lpEH .img-logo img {
  height: 6rem;
}
.cid-rRtPR3lpEH [type="email"] {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rRtPR3lpEH [type="submit"] {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  text-align: center;
}
.cid-rRtPR3lpEH .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rRtPR3lpEH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rRtPR3lpEH .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rRtPR3lpEH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rRtPR3lpEH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rRtPR3lpEH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rRtPR3lpEH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rRtPR3lpEH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rRtPR3lpEH .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rRtPR3lpEH form .input-group input.form-control,
.cid-rRtPR3lpEH form .input-group-btn .btn {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.cid-rRtPR3lpEH .form-inline {
  justify-content: center;
}
.cid-rRtPR3lpEH .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rRtPR3lpEH .foot-logo {
    text-align: center !important;
  }
  .cid-rRtPR3lpEH .foot-title {
    text-align: center !important;
  }
  .cid-rRtPR3lpEH .mbr-text {
    text-align: center !important;
  }
}
.cid-rRtPR6HeDu {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRtPR6HeDu .container-fluid {
  padding: 0 3rem;
}
.cid-rRtPR6HeDu ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rRtPR6HeDu ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rRtPR6HeDu ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rRtPR6HeDu ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rRtPR6HeDu .container-fluid {
    padding: 0 1rem;
  }
  .cid-rRtPR6HeDu .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rRtPR6HeDu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rRtPR6HeDu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #ff5ecb);
  display: inline-block;
}
.cid-rRtPRb4hez {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #28d4e2;
}
.cid-rRtPRb4hez .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rRtPRb4hez .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rRtPRb4hez .btn-social {
  border: none !important;
}
.cid-rRtPRb4hez [class^="socicon-"]:before,
.cid-rRtPRb4hez [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rRtPRb4hez .btn {
    font-size: 20px !important;
  }
}
.cid-rRtPRb4hez .mbr-section-title {
  color: #ffffff;
}
