.bwp-effect-grow .image {
  transition-duration: .3s;
  transition-property: transform
}

.bwp-effect-grow .image-parent {
  overflow: hidden;
  display: inline-flex
}

.bwp-effect-grow:hover .image {
  transform: scale(1.1)
}

.bwp-effect-shrink .image {
  transition-duration: .3s;
  transition-property: transform
}

.bwp-effect-shrink:hover .image {
  transform: scale(.9)
}

@keyframes bwp-effect-pulse {
  25% {
    transform: scale(1.1)
  }

  75% {
    transform: scale(.9)
  }
}

.bwp-effect-pulse:hover .image {
  animation-name: bwp-effect-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite
}

@keyframes bwp-effect-pulse-grow {
  to {
    transform: scale(1.1)
  }
}

.bwp-effect-pulse-grow:hover .image {
  animation-name: bwp-effect-pulse-grow;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate
}

@keyframes bwp-effect-pulse-shrink {
  to {
    transform: scale(.9)
  }
}

.bwp-effect-pulse-shrink:hover .image {
  animation-name: bwp-effect-pulse-shrink;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate
}

@keyframes bwp-effect-push {
  50% {
    transform: scale(.8)
  }

  100% {
    transform: scale(1)
  }
}

.bwp-effect-push:hover .image {
  animation-name: bwp-effect-push;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}

@keyframes bwp-effect-pop {
  50% {
    transform: scale(1.2)
  }
}

.bwp-effect-pop:hover .image {
  animation-name: bwp-effect-pop;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}

.bwp-effect-bounce-in .image {
  transition-duration: .5s
}

.bwp-effect-bounce-in:hover .image {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36)
}

.bwp-effect-bounce-out .image {
  transition-duration: .5s
}

.bwp-effect-bounce-out:hover .image {
  transform: scale(.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36)
}

.bwp-effect-rotate .image {
  transition-duration: .3s;
  transition-property: transform
}

.bwp-effect-rotate:hover .image {
  transform: rotate(4deg)
}

.bwp-effect-grow-rotate .image {
  transition-duration: .3s;
  transition-property: transform
}

.bwp-effect-grow-rotate:hover .image {
  transform: scale(1.1) rotate(4deg)
}

.bwp-effect-float .image {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out
}

.bwp-effect-float:hover .image {
  transform: translateY(-8px)
}

.bwp-effect-sink .image {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out
}

.bwp-effect-sink:hover .image {
  transform: translateY(8px)
}

@keyframes bwp-effect-bob {
  0% {
    transform: translateY(-8px)
  }

  50% {
    transform: translateY(-4px)
  }

  100% {
    transform: translateY(-8px)
  }
}

@keyframes bwp-effect-bob-float {
  100% {
    transform: translateY(-8px)
  }
}

.bwp-effect-bob:hover .image {
  animation-name: bwp-effect-bob-float, bwp-effect-bob;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate
}

@keyframes bwp-effect-hang {
  0% {
    transform: translateY(8px)
  }

  50% {
    transform: translateY(4px)
  }

  100% {
    transform: translateY(8px)
  }
}

@keyframes bwp-effect-hang-sink {
  100% {
    transform: translateY(8px)
  }
}

.bwp-effect-hang:hover .image {
  animation-name: bwp-effect-hang-sink, bwp-effect-hang;
  animation-duration: .3s, 1.5s;
  animation-delay: 0s, .3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate
}

.bwp-effect-skew .image {
  transition-duration: .3s;
  transition-property: transform
}

.bwp-effect-skew:hover .image {
  transform: skew(-10deg)
}

.bwp-effect-skew-forward .image {
  transition-duration: .3s;
  transition-property: transform;
  transform-origin: 0 100%
}

.bwp-effect-skew-forward:hover .image {
  transform: skew(-10deg)
}

.bwp-effect-skew-backward .image {
  transition-duration: .3s;
  transition-property: transform;
  transform-origin: 0 100%
}

.bwp-effect-skew-backward:hover .image {
  transform: skew(10deg)
}

@keyframes bwp-effect-wobble-vertical {
  16.65% {
    transform: translateY(8px)
  }

  33.3% {
    transform: translateY(-6px)
  }

  49.95% {
    transform: translateY(4px)
  }

  66.6% {
    transform: translateY(-2px)
  }

  83.25% {
    transform: translateY(1px)
  }

  100% {
    transform: translateY(0)
  }
}

.bwp-effect-wobble-vertical:hover .image {
  animation-name: bwp-effect-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-horizontal {
  16.65% {
    transform: translateX(8px)
  }

  33.3% {
    transform: translateX(-6px)
  }

  49.95% {
    transform: translateX(4px)
  }

  66.6% {
    transform: translateX(-2px)
  }

  83.25% {
    transform: translateX(1px)
  }

  100% {
    transform: translateX(0)
  }
}

.bwp-effect-wobble-horizontal:hover .image {
  animation-name: bwp-effect-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px)
  }

  33.3% {
    transform: translate(-6px, -6px)
  }

  49.95% {
    transform: translate(4px, 4px)
  }

  66.6% {
    transform: translate(-2px, -2px)
  }

  83.25% {
    transform: translate(1px, 1px)
  }

  100% {
    transform: translate(0, 0)
  }
}

.bwp-effect-wobble-to-bottom-right:hover .image {
  animation-name: bwp-effect-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px)
  }

  33.3% {
    transform: translate(-6px, 6px)
  }

  49.95% {
    transform: translate(4px, -4px)
  }

  66.6% {
    transform: translate(-2px, 2px)
  }

  83.25% {
    transform: translate(1px, -1px)
  }

  100% {
    transform: translate(0, 0)
  }
}

.bwp-effect-wobble-to-top-right:hover .image {
  animation-name: bwp-effect-wobble-to-top-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-top {
  16.65% {
    transform: skew(-12deg)
  }

  33.3% {
    transform: skew(10deg)
  }

  49.95% {
    transform: skew(-6deg)
  }

  66.6% {
    transform: skew(4deg)
  }

  83.25% {
    transform: skew(-2deg)
  }

  100% {
    transform: skew(0)
  }
}

.bwp-effect-wobble-top .image {
  transform-origin: 0 100%
}

.bwp-effect-wobble-top:hover .image {
  animation-name: bwp-effect-wobble-top;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-bottom {
  16.65% {
    transform: skew(-12deg)
  }

  33.3% {
    transform: skew(10deg)
  }

  49.95% {
    transform: skew(-6deg)
  }

  66.6% {
    transform: skew(4deg)
  }

  83.25% {
    transform: skew(-2deg)
  }

  100% {
    transform: skew(0)
  }
}

.bwp-effect-wobble-bottom .image {
  transform-origin: 100% 0
}

.bwp-effect-wobble-bottom:hover .image {
  animation-name: bwp-effect-wobble-bottom;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-wobble-skew {
  16.65% {
    transform: skew(-12deg)
  }

  33.3% {
    transform: skew(10deg)
  }

  49.95% {
    transform: skew(-6deg)
  }

  66.6% {
    transform: skew(4deg)
  }

  83.25% {
    transform: skew(-2deg)
  }

  100% {
    transform: skew(0)
  }
}

.bwp-effect-wobble-skew:hover .image {
  animation-name: bwp-effect-wobble-skew;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1
}

@keyframes bwp-effect-buzz {
  50% {
    transform: translateX(3px) rotate(2deg)
  }

  100% {
    transform: translateX(-3px) rotate(-2deg)
  }
}

.bwp-effect-buzz:hover .image {
  animation-name: bwp-effect-buzz;
  animation-duration: .15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite
}

@keyframes bwp-effect-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg)
  }

  20% {
    transform: translateX(-3px) rotate(-2deg)
  }

  30% {
    transform: translateX(3px) rotate(2deg)
  }

  40% {
    transform: translateX(-3px) rotate(-2deg)
  }

  50% {
    transform: translateX(2px) rotate(1deg)
  }

  60% {
    transform: translateX(-2px) rotate(-1deg)
  }

  70% {
    transform: translateX(2px) rotate(1deg)
  }

  80% {
    transform: translateX(-2px) rotate(-1deg)
  }

  90% {
    transform: translateX(1px) rotate(0)
  }

  100% {
    transform: translateX(-1px) rotate(0)
  }
}

.bwp-effect-buzz-out:hover .image {
  animation-name: bwp-effect-buzz-out;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1
}

.header-search-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: rgba(0, 0, 0, .7);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-in-out
}

.header-search-mobile .dropdown-toggle {
  color: var(--text-color)
}

.header-mobile {
  display: none
}

.header-mobile .button-menu {
  flex: 1;
  display: flex
}

.header-mobile .button-menu .menu-mobile__btn {
  border: 0;
  padding: 0;
  background: 0 0;
  font-size: 22px;
  line-height: 1;
  position: unset;
  text-align: left;
  width: auto;
  color: var(--title-text-color)
}

.header-mobile .button-menu .menu-mobile__btn:hover {
  color: var(--color-primary)
}

.header-mobile .button-menu .search-toggle {
  margin: 0 0 0 10px;
  font-size: 20px;
  top: 0
}

.header-mobile .header-right {
  display: flex;
  flex: 1;
  justify-content: flex-end
}

.header-mobile .header-logo {
  justify-content: center
}

.header-mobile .header-center__inner {
  padding: 15px 0
}

.header-mobile .header-bottom-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  padding: 5px 15px;
  align-items: center;
  box-shadow: 0 1px 10px 5px rgba(0, 0, 0, .05);
  z-index: 999;
  line-height: 1;
  height: 50px
}

.header-mobile .header-bottom-fixed>* {
  flex: 1;
  text-align: center
}

.header-mobile .header-bottom-fixed>* a {
  color: #000
}

.header-mobile .header-bottom-fixed>* a:hover {
  color: var(--color-primary)
}

.header-mobile .header-bottom-fixed>* i {
  font-size: 20px;
  top: 0
}

.header-mobile .header-bottom-fixed>* .search-toggle {
  margin: 0;
  top: -1px;
  color: #000
}

.header-mobile .header-bottom-fixed>* .search-toggle:hover {
  color: var(--color-primary)
}

.header-mobile .header-bottom-fixed>* span {
  display: block;
  font-size: 12px;
  font-weight: var(--body-font-weight-medium);
  text-align: center;
  white-space: nowrap;
  margin-top: 5px;
  text-transform: uppercase
}

.menu-mobile--open {
  overflow: hidden
}

.menu-mobile--open .menu-mobile {
  opacity: 1;
  visibility: visible
}

.menu-mobile--open .menu-mobile__inner {
  transform: translate(0, 0)
}

.menu-mobile--open .js-menu-mobile {
  position: absolute;
  width: 100%;
  padding: 20px 15px;
  text-align: right;
  color: #fff;
  background-color: #fff;
  z-index: 10;
  font-size: 0
}

.menu-mobile--open .js-menu-mobile>span {
  cursor: pointer;
  position: relative;
  text-align: center;
  z-index: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid #e7e7e7;
  border-radius: 50%
}

.menu-mobile--open .js-menu-mobile>span:after,
.menu-mobile--open .js-menu-mobile>span:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 14px;
  top: 50%;
  left: calc(50% - 7px);
  margin-top: -1px;
  background-color: #000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.menu-mobile--open .js-menu-mobile>span:before {
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.menu-mobile--open .js-menu-mobile>span:after {
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.menu-mobile--open .js-menu-mobile>span:hover:after,
.menu-mobile--open .js-menu-mobile>span:hover:before {
  -webkit-transform: rotate(0);
  transform: rotate(0)
}

.menu-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease
}

.menu-mobile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, .4)
}

.menu-mobile__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 320px;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  transform: translate(-320px, 0);
  transition: all .4s ease
}

.menu-mobile__header {
  position: relative;
  z-index: 1;
  display: block;
  height: 50px;
  border-bottom: 1px solid #e7e7e7;
  background-color: #fff
}

.menu-mobile__nav {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 65px 20px 15px
}

.menu-mobile__nav-item {
  border-bottom: 1px solid rgba(229, 229, 229, .5)
}

.menu-mobile__nav-item.megamenu {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(229, 229, 229, .5) !important
}

.menu-mobile__nav-item.megamenu:last-child {
  margin-bottom: 0;
  border-bottom: 0 !important;
  padding-bottom: 0
}

.menu-mobile__nav-item a {
  display: block;
  padding: 12px 0;
  color: #000;
  line-height: 20px;
  transition: color .3s ease;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family);
}

.menu-mobile__nav-item a.mm-nav__prev {
  color: var(--text-color)
}

.menu-mobile__nav-item a:hover {
  color: var(--color-primary);
  text-decoration: none
}

.menu-mobile__nav-item.active>.mm-nav__links {
  opacity: 1;
  visibility: visible;
  left: 0
}

.menu-mobile__nav-item.active>.mm-nav__links.active--hidden {
  position: absolute
}

.menu-mobile__nav-item.active>.mm-nav__links.active--hidden>.mm-nav__links-header {
  opacity: 0;
  pointer-events: none
}

.menu-mobile__nav-item .menu-list {
  padding: 0;
  list-style: none;
  margin: 0
}

.menu-mobile__nav-item .menu-list a {
  padding: 5px 0;
  position: relative;
  font-style: unset
}

.menu-mobile__nav-item .menu-list a span {
  position: absolute;
  line-height: 18px;
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  top: -4px
}

.menu-mobile__nav-item .menu-list a span.hot {
  background: #f11e1e
}

.menu-mobile__nav-item .menu-list a span.new {
  background: #32d4bf
}

.menu-mobile__nav-item .footer-menu__item a {
  text-transform: unset;
  font-size: 16px;
  color: var(--text-color)
}

.menu-mobile__nav-item .footer-menu__item a:hover {
  color: var(--color-primary)
}

.mm-nav__btn {
  display: block;
  width: auto;
  height: 44px;
  padding: 0;
  color: #0000003F;
  border: none;
  border-radius: 0;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  background: #fff
}

.mm-nav__btn:focus,
.mm-nav__btn:hover {
  outline: 0;
  box-shadow: none
}

.effect-one:hover img {
  transform: scale(1.1)
}

.effect-two img {
  transform: scale(1.1)
}

.effect-two:hover img {
  transform: scale(1)
}

.effect-three {
  overflow: hidden;
  position: relative
}

.effect-three::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg)
}

@keyframes effectShine {
  100% {
    left: 125%;
  }
}

.effect-three:hover::before {
  animation: effectShine .75s
}

.effect-four::after,
.effect-four::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  transition: all .5s ease
}

.effect-four::before {
  top: 5%;
  left: 0;
  right: 0;
  width: 0;
  height: 90%;
  margin: 0 auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff
}

.effect-four::after {
  left: 5%;
  top: 0;
  bottom: 0;
  width: 90%;
  height: 0;
  margin: auto;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff
}

.effect-four:hover::before {
  width: 90%;
  max-width: 90%
}

.effect-four:hover::after {
  height: 90%;
  max-height: 90%
}

@media (min-width:1200px) {
  .header-search-mobile {
    display: none
  }
}

@media (max-width:1199px) {
  .header-mobile {
    display: block
  }
}

@media (max-width:767px) {
  .bwp-load-slick-mobile {
    margin: 0 !important
  }

  .bwp-load-slick-mobile .slick-dots {
    position: static;
    margin-top: 15px
  }
}

@media (max-width:480px) {
  .bwp_slick-margin-mobile .slick-arrow {
    display: none !important
  }

  .bwp_slick-margin-mobile .slick-slider {
    margin-right: -15px
  }

  .bwp_slick-margin-mobile .slick-list {
    padding-right: 33%
  }
}

img {
  max-width: 100%;
  height: auto
}

a:focus,
a:hover {
  outline: 0;
  color: var(--color-primary);
  text-decoration: none
}

.btn:focus {
  outline: unset;
  box-shadow: unset
}

.bwp-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px
}

.btn {
  display: block;
  padding: 10px 30px;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: 12px;
  text-transform: uppercase;
  transition: all .3s ease
}

.container.container-full-image {
  max-width: 100%;
  padding: 0
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary)
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary)
}

.btn-secondary {
  color: #000;
  background-color: #fff;
  border: 1px solid #e7e7e7
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
  color: #000;
  background-color: #e7e7e7;
  border-color: #e7e7e7
}

.fade-in {
  transition: transform .8s cubic-bezier(.215, .61, .355, 1), opacity .8s cubic-bezier(.215, .61, .355, 1);
  transition-delay: 0.5s
}

.btn--secondary-accent {
  width: 50%
}

.slick-slider {
  position: relative;
  display: block;
  user-select: none;
  touch-action: pan-y
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translate3d(0, 0, 0)
}

.slick-list {
  position: relative;
  display: block;
  margin: 0 -15px;
  padding: 0;
  overflow: hidden;
  padding-bottom: 30px;
}

.slick-list:focus {
  outline: 0
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 0 15px
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-slide:focus {
  outline: 0
}

.slick-arrow {
  font-size: 0;
  top: calc(50% - 23px);
  position: absolute;
  z-index: 1;
  transition: all .3s ease;
  font-family: qico;
  border: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  color: var(--text-color);
  background: 0 0
}

.slick-arrow:before {
  font-size: 20px
}

.slick-arrow:hover {
  color: var(--color-primary)
}

.slick-prev {
  left: -20px
}

.slick-prev::before {
  content: "\e62b"
}

.slick-next {
  right: -20px
}

.slick-next::before {
  content: "\e628"
}

.slick-dots {
  left: 0;
  width: 100%;
  bottom: 30px;
  display: flex;
  flex-wrap: row wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none
}

.slick-dots li {
  padding: 0 7.5px
}

.slick-dots li.slick-active button:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition-delay: .3s
}

.slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  background: #d9d9d9;
  box-sizing: content-box;
  padding: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 0
}

.slick-dots button:before {
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  content: "";
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  -webkit-transition: transform .3s cubic-bezier(.25, .46, .45, .94);
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
  width: 100%;
  height: 100%;
  background: #000
}

.slick-dots button:focus,
.slick-dots button:hover {
  outline: 0;
  box-shadow: none
}

.slick-carousel {
  display: none
}

.slick-carousel.slick-initialized {
  display: block
}

.slick-carousel .slick-carousel__item {
  padding-left: calc(30px / 2);
  padding-right: calc(30px / 2)
}

.main-menu__mobile {
  margin-right: 15px
}

.main-menu__mobile .btn-nav {
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 32px
}

.product-short-description {
  display: none
}

.product-card {
  position: relative;
  margin-bottom: 25px
}

.product-card:hover .product-card__buttons>div {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.product-card:hover .product-card__image .product-card__img-hidden:not(.lazyload) {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease
}

.product-card:hover .product-card__image-wrapper.transform .product-card__image {
  overflow: hidden
}

.product-card:hover .product-card__image-wrapper.transform .product-card__image .product-card__img-hidden {
  transform: scale(1)
}

.product-card:hover .product-card__image .preloading-img-product.video img {
  opacity: 1;
  visibility: visible;
  transition: unset
}

.product-card:hover .product-card__image .preloading-img-product.video.have-variants video {
  opacity: 0;
  visibility: hidden
}

.product-card .product-card__image-wrapper.transform .product-card__image {
  overflow: hidden
}

.product-card .product-card__image-wrapper.transform .product-card__image .preloading-img-product:last-child {
  position: absolute;
  top: 0;
  width: 100%;
  background: 0 0
}

.product-card .product-card__image-wrapper.transform .product-card__image .preloading-img-product:first-child {
  position: relative;
  background: #f5f5f5
}

.product-card .product-card__image-wrapper.transform .product-card__image .product-card__img-hidden {
  transform: scale(1)
}

.product-card .product-card__image-wrapper.transform .product-card__image .product-card__img-hidden {
  transform: scale(1.3)
}

.product-card .product-card__form.mobile {
  margin-top: 15px;
  overflow: hidden;
  position: relative
}

.product-card .product-card__form.mobile .btn {
  padding: 0;
  height: 35px;
  line-height: 35px;
  color: #000;
  text-transform: unset;
  border: 1px solid #e7e7e7;
  margin: auto;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex: 1;
  font-size: revert !important
}

.product-card .product-card__form.mobile .btn:before {
  font-family: icomoon;
  content: "\e928";
  display: inline-block;
  font-size: 18px;
  line-height: 1 !important;
  position: relative;
  top: 1px !important
}

.product-card .product-card__form.mobile .btn:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary) !important
}

.product-card .product-card__form.mobile .btn.btn-link {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 33px;
  color: #000;
  text-decoration: none
}

.product-card .product-card__form.mobile .btn.btn-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff
}

.product-card .product-card__form.mobile .btn.btn-link:before {
  display: none
}

.product-card.hover_style_1 .product-card__content .product-card__name {
  flex: 1
}

.product-card.hover_style_1 .product-card__content .content-top {
  display: flex;
  justify-content: space-between
}

.product-card.hover_style_1 .product-card__buttons {
  flex-wrap: wrap;
  width: 35px;
  left: auto;
  padding: 0;
  right: 25px;
  bottom: auto;
  top: 15px
}

.product-card.hover_style_1 .product-card__buttons>div {
  margin: 10px 0 0;
  transform: translateY(20px)
}

.product-card.hover_style_1 .product-card__buttons>div:before {
  right: calc(100% + 10px);
  left: auto;
  bottom: calc(50% - 11.5px);
  transform: unset
}

.product-card.hover_style_1 .product-card__buttons>div:after {
  right: 100%;
  left: auto;
  bottom: calc(50% - 5px);
  border-color: transparent transparent transparent var(--color-primary)
}

.product-card.hover_style_1 .content-bottom {
  position: relative;
  overflow: hidden
}

.product-card.hover_style_1 .product-card__form:not(.mobile) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  transform: translateY(100%)
}

.product-card.hover_style_1 .product-card__form:not(.mobile) .btn {
  padding: 0 20px;
  margin: auto;
  color: #000;
  background: var(--color-primary);
  font-size: 17px;
  line-height: 32px;
  text-transform: uppercase;
  font-family: var(--font-family);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: 50px
}

.product-card.hover_style_1 .product-card__form:not(.mobile) .btn:hover {
  color: #fff;
  background: #000
}

.product-card.hover_style_1:hover .product-card__buttons>div {
  transform: translateY(0)
}

.product-card.hover_style_1:hover .product-card__form:not(.mobile) {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.product-card.hover_style_2 .product-card__buttons {
  flex-wrap: wrap;
  width: 40px;
  right: 10px;
  padding: 0;
  bottom: auto;
  top: 0
}

.product-card.hover_style_2 .product-card__buttons>div {
  margin: 10px 0 0;
  transform: translateY(20px)
}

.product-card.hover_style_2 .product-card__buttons>div:before {
  left: auto;
  right: calc(100% + 10px);
  bottom: calc(50% - 11.5px);
  transform: unset
}

.product-card.hover_style_2 .product-card__buttons>div:after {
  left: auto;
  right: 100%;
  bottom: calc(50% - 5px);
  border-color: transparent transparent transparent var(--color-primary)
}

.product-card.hover_style_3 {
  position: relative
}

.product-card.hover_style_3 .product-card__buttons {
  flex-wrap: wrap;
  width: 20px;
  right: 10px;
  padding: 0;
  bottom: auto;
  top: 10px;
  z-index: 11
}

.product-card.hover_style_3 .product-card__content {
  text-align: center
}

.product-card.hover_style_3 .product-card__buttons>div {
  margin: 5px 0 0;
  transform: translateX(50px);
  height: 20px;
  line-height: 20px
}

.product-card.hover_style_3 .product-card__buttons>div:before {
  left: auto;
  right: calc(100% + 10px);
  bottom: calc(50% - 11.5px);
  transform: unset
}

.product-card.hover_style_3 .product-card__buttons>div:after {
  left: auto;
  right: 100%;
  bottom: calc(50% - 5px);
  border-color: transparent transparent transparent var(--color-primary)
}

.product-card.hover_style_3 .product-card__buttons>div .btn,
.product-card.hover_style_3 .product-card__buttons>div button {
  color: #fff;
  background: 0 0;
  width: auto;
  line-height: 1;
  height: 20px
}

.product-card.hover_style_3 .product-card__buttons>div .btn:before,
.product-card.hover_style_3 .product-card__buttons>div button:before {
  line-height: 1
}

.product-card.hover_style_3 .product-card__form:not(.mobile) {
  text-align: center;
  margin-top: 10px
}

.product-card.hover_style_3 .product-card__form:not(.mobile) .btn-link {
  padding: 0 25px;
  height: 40px;
  line-height: 38px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #fff;
  margin: auto;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 700;
  font-family: var(--font-family);
  border-radius: 50px;
  text-decoration: none
}

.product-card.hover_style_3 .product-card__form:not(.mobile) .btn-link i {
  margin-right: 5px;
  font-size: 16px;
  line-height: 1;
  position: relative;
  top: 2px;
  display: none
}

.product-card.hover_style_3 .product-card__form:not(.mobile) .btn-link:hover {
  color: #000;
  background: var(--color-primary);
  border: 1px solid var(--color-primary)
}

.product-card.hover_style_3:hover .product-card__image-link:before {
  transform: scale(1);
  opacity: 1;
  visibility: visible
}

.product-card.hover_style_3:hover .product-card__buttons>div {
  transform: translateX(0)
}

.product-card.hover_style_3:hover .product-card__content {
  transform: scale(1);
  opacity: 1;
  visibility: visible
}

.product-card.hover_style_3:hover .product-card__image-wrapper.slider .slick-arrow {
  opacity: 1;
  visibility: visible
}

.product-card .content-button-mobile {
  position: absolute;
  top: 10px;
  right: 10px
}

.product-card .content-button-mobile>div {
  margin-bottom: 5px
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden
}

.product-card__image-wrapper.zoom .product-card__image img {
  background: #f5f5f5
}

.product-card__image-wrapper.fadein .preloading-img-product:last-child {
  position: absolute;
  top: 0;
  width: 100%;
  background: 0 0
}

.product-card__image-wrapper.fadein .preloading-img-product:first-child {
  position: relative;
  background: #f5f5f5
}

.product-card__image-wrapper.slider {
  position: relative
}

.product-card__image-wrapper.slider .product-card__image {
  display: block
}

.product-card__image-wrapper.slider .product-card__image:not(.slick-initialized) .product-card__image-link:not(:first-child) {
  display: none
}

.product-card__image-wrapper.slider .product-card__image:not(.slick-initialized) .product-card__image-link:not(:first-child) {
  display: none
}

.product-card__image-wrapper.slider .slick-list {
  padding: 0
}

.product-card__image-wrapper.slider .slick-arrow {
  width: 20px;
  height: 30px;
  top: calc(50% - 15px);
  background: #fff;
  text-align: center;
  line-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  box-shadow: unset;
  display: block !important
}

.product-card__image-wrapper.slider .slick-arrow:before {
  font-size: 13px
}

.product-card__image-wrapper.slider .slick-arrow:hover {
  background: var(--color-primary);
  color: #fff
}

.product-card__image-wrapper.slider .slick-arrow.slick-prev {
  left: 0
}

.product-card__image-wrapper.slider .slick-arrow.slick-next {
  right: 0
}

.product-card__image-wrapper.slider:hover .slick-arrow {
  opacity: 1 !important;
  visibility: visible !important
}

.product-card__image-link {
  display: block
}

.product-card__image-link img:not([role=presentation]) {
  width: 100%
}

.product-card__image {
  position: relative
}

.product-card__image .product-card__img-hidden {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease
}

.product-card__image video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.product-card__image .preloading-img-product {
  background: #f5f5f5;
  position: relative
}

.product-card__image .preloading-img-product.video img {
  opacity: 0;
  visibility: hidden
}

.product-card__image .preloading-img-product img {
  position: absolute;
  top: 0;
  left: 0
}

.product-card__content {
  position: relative;
  margin-top: 20px
}

.product-card__summary {
  display: none;
  padding: 10px 0;
  font-size: calc(16px - 2px)
}

.product-card__summary h3,
.product-card__summary h4,
.product-card__summary h5,
.product-card__summary h6 {
  margin: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600
}

.product-card__summary ul {
  margin: 0;
  padding-left: 15px
}

.product-card__buttons {
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 9;
  width: 100%;
  display: flex;
  padding: 0 15px;
  transition: all .3s ease-in-out;
  justify-content: center
}

.product-card__buttons>div {
  position: relative;
  transition: all .3s ease;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  margin: 0 5px
}

.product-card__buttons>div:nth-child(2) {
  transition-delay: 0.1s
}

.product-card__buttons>div:nth-child(3) {
  transition-delay: 0.2s
}

.product-card__buttons>div:nth-child(4) {
  transition-delay: 0.3s
}

.product-card__buttons>div:before {
  content: attr(data-title);
  position: absolute;
  padding: 0 10px;
  background: var(--color-primary);
  color: #000;
  bottom: calc(100% + 10px);
  line-height: 23px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 5px
}

.product-card__buttons>div:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 5px);
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden
}

.product-card__buttons>div:hover:after,
.product-card__buttons>div:hover:before {
  opacity: 1;
  visibility: visible
}

.product-card__buttons .btn {
  color: #000;
  display: inline-block;
  text-align: center;
  background: #ffe993;
  width: 35px;
  height: 35px;
  font-size: 0;
  white-space: nowrap;
  padding: 0;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .04);
  border-radius: 50%
}

.product-card__buttons .btn span {
  display: none
}

.product-card__buttons .btn.btn-link {
  font-size: 0;
  text-decoration: none
}

.product-card__buttons .btn.btn-link i {
  font-size: 18px;
  line-height: 35px
}

.product-card__buttons .btn:focus,
.product-card__buttons .btn:hover {
  outline: 0;
  box-shadow: none
}

.product-card__buttons .btn:hover {
  color: #000;
  background-color: var(--color-primary);
  -webkit-animation-name: beat;
  animation-name: beat;
  -webkit-animation-duration: .9s;
  animation-duration: .9s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.product-card__name {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--title-font-family);
}

.product-card__name a {
  transition: color .3s ease;
  color: #000
}

.product-card__name a:hover {
  color: var(--color-primary);
  text-decoration: none
}

.product-card__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  color: #fff;
  text-align: left
}

.product-card__label>* {
  min-width: 60px;
  line-height: 25px;
  font-size: calc(16px - 1px);
  padding: 0 10px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin-right: 5px;
  vertical-align: top
}

@media (min-width:576px) {
  .container {
    max-width: 100%
  }
}

@media (min-width:768px) {
  .container {
    max-width: 100%
  }
}

@media (min-width:1025px) {
  .main-menu__mobile {
    display: none
  }

  .product-card .content-button-mobile {
    display: none
  }
}

@media (min-width:1200px) {
  .menu-mobile {
    display: none
  }

  .product-card .product-card__form.mobile {
    display: none
  }

  .product-card.hover_style_3 .product-card__image-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--gray-dark-50);
    transform: scale(.8);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9
  }

  .product-card.hover_style_3 .product-card__content {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.8);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10
  }

  .product-card.hover_style_3 .product-card__content .product-card__name a {
    color: #fff
  }

  .product-card.hover_style_3 .product-card__content .product-card__name a:hover {
    color: var(--color-primary)
  }
}

@media (min-width:1500px) {
  .container {
    max-width: 1500px
  }
}

@media (max-width:1510px) and (min-width:1200px) {
  .container {
    padding-left: 30px;
    padding-right: 30px
  }
}

@media (max-width:1500px) {
  .slick-prev {
    left: -15px
  }

  .slick-next {
    right: -15px
  }
}

@media (max-width:1199px) {
  .slick-list {
    margin: 0 -7.5px
  }

  .slick-list .slick-slide {
    padding: 0 7.5px
  }

  .slick-carousel .slick-carousel__item {
    padding-left: 7.5px;
    padding-right: 7.5px
  }

  .product-card.hover_style_3 .product-card__content {
    padding: 0
  }

  .product-card .product-card__buttons {
    display: none
  }

  .product-card .product-card__form:not(.mobile) {
    display: none
  }
}

@media (max-width:991px) {
  .product-card__image-wrapper.slider .slick-arrow {
    width: 20px;
    height: 30px;
    top: calc(50% - 15px);
    line-height: 30px;
    opacity: 1 !important;
    visibility: visible !important
  }

  .product-card__image-wrapper.slider .slick-arrow:before {
    font-size: 11px
  }
}

@media (max-width:767px) {
  .hidden-mobile {
    display: none
  }

  .slick-arrow:before {
    font-size: 10px
  }

  .slick-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    padding: 0;
    background: #fff;
    color: #000;
    text-align: center;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .04)
  }

  .slick-arrow:hover {
    color: var(--color-primary)
  }

  .slick-prev {
    left: 0
  }

  .slick-next {
    right: 0
  }

  .hide_mobile {
    display: none !important
  }

  .main-menu__mobile {
    margin-right: 4px
  }

  .menu-mobile__inner {
    max-width: 90vw
  }

  .menu-mobile__nav {
    max-width: calc(100vw - 30px)
  }
}

@media (max-width:480px) {
  .product-card__label>* {
    min-width: 40px;
    line-height: 20px;
    font-size: 10px;
    padding: 0 5px
  }
}

/* PRODUCT RECOMMENDATIONS */
.product-recommendations .wpbingo-title__heading {
	/* font-size: 20px; */
	/* color: #000; */
	margin: 0;
	display: inline-block;
	position: relative;
	font-weight: 700;
}

.product-recommendations .product-recommendations__inner {
	position: relative;
}

.product-recommendations .product-recommendations__inner:hover>.slick-arrow {
	display: none;
}

.product-recommendations .wpbingo-title {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 35px;
}

.product-recommendations .js-product-recommendations>.slick-arrow {
	top: 37%;
	position: absolute;
	z-index: 1;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 0;
	background: #fff;
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.04);
	border: 0;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	border-radius: 50%;
}

.product-recommendations .js-product-recommendations>.slick-arrow:before {
	color: #000;
	font-size: 12px;
}

.product-recommendations .js-product-recommendations>.slick-arrow.slick-next {
	right: 15px;
}

.product-recommendations .js-product-recommendations>.slick-arrow.slick-prev {
	left: 15px;
}

.product-recommendations .js-product-recommendations>.slick-arrow:hover {
	background: var(--color-primary);
}

.product-recommendations .js-product-recommendations>.slick-arrow:hover:before {
	color: #fff;
}

.product-recommendations .js-product-recommendations:hover .slick-arrow {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 991px) {
  .product-recommendations .js-product-recommendations>.slick-arrow {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 768px) {
  .product-recommendations .js-product-recommendations>.slick-arrow {
		width: 25px;
		height: 25px;
		line-height: 25px;
	}
}

@media (max-width: 480px) {
  .product-recommendations .bwp_slick-margin-mobile .slick-slider {
		margin-right: -7.5px;
	}
}
