/* Theme hover */
@keyframes bounce {
  20%, 53%, 80%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  from, to {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  11.1%, from, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

.elementor-animation-grow {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-grow:active, .elementor-animation-grow:focus, .elementor-animation-grow:hover {
  transform: scale(1.1);
}

.elementor-animation-shrink {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-shrink:active, .elementor-animation-shrink:focus, .elementor-animation-shrink:hover {
  transform: scale(0.9);
}

@keyframes elementor-animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.elementor-animation-pulse:active, .elementor-animation-pulse:focus, .elementor-animation-pulse:hover {
  animation-name: elementor-animation-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes elementor-animation-pulse-grow {
  to {
    transform: scale(1.1);
  }
}
.elementor-animation-pulse-grow:active, .elementor-animation-pulse-grow:focus, .elementor-animation-pulse-grow:hover {
  animation-name: elementor-animation-pulse-grow;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes elementor-animation-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
.elementor-animation-pulse-shrink:active, .elementor-animation-pulse-shrink:focus, .elementor-animation-pulse-shrink:hover {
  animation-name: elementor-animation-pulse-shrink;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes elementor-animation-push {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.elementor-animation-push:active, .elementor-animation-push:focus, .elementor-animation-push:hover {
  animation-name: elementor-animation-push;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-pop {
  50% {
    transform: scale(1.2);
  }
}
.elementor-animation-pop:active, .elementor-animation-pop:focus, .elementor-animation-pop:hover {
  animation-name: elementor-animation-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.elementor-animation-bounce-in {
  transition-duration: 0.5s;
}

.elementor-animation-bounce-in:active, .elementor-animation-bounce-in:focus, .elementor-animation-bounce-in:hover {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-bounce-out {
  transition-duration: 0.5s;
}

.elementor-animation-bounce-out:active, .elementor-animation-bounce-out:focus, .elementor-animation-bounce-out:hover {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-rotate {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-rotate:active, .elementor-animation-rotate:focus, .elementor-animation-rotate:hover {
  transform: rotate(4deg);
}

.elementor-animation-grow-rotate {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-grow-rotate:active, .elementor-animation-grow-rotate:focus, .elementor-animation-grow-rotate:hover {
  transform: scale(1.1) rotate(4deg);
}

.elementor-animation-float {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.elementor-animation-float:active, .elementor-animation-float:focus, .elementor-animation-float:hover {
  transform: translateY(-8px);
}

.elementor-animation-sink {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.elementor-animation-sink:active, .elementor-animation-sink:focus, .elementor-animation-sink:hover {
  transform: translateY(8px);
}

@keyframes elementor-animation-bob {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes elementor-animation-bob-float {
  100% {
    transform: translateY(-8px);
  }
}
.elementor-animation-bob:active, .elementor-animation-bob:focus, .elementor-animation-bob:hover {
  animation-name: elementor-animation-bob-float, elementor-animation-bob;
  animation-duration: 0.3s, 1.5s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

@keyframes elementor-animation-hang {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(8px);
  }
}
@keyframes elementor-animation-hang-sink {
  100% {
    transform: translateY(8px);
  }
}
.elementor-animation-hang:active, .elementor-animation-hang:focus, .elementor-animation-hang:hover {
  animation-name: elementor-animation-hang-sink, elementor-animation-hang;
  animation-duration: 0.3s, 1.5s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

.elementor-animation-skew {
  transition-duration: 0.3s;
  transition-property: transform;
}

.elementor-animation-skew:active, .elementor-animation-skew:focus, .elementor-animation-skew:hover {
  transform: skew(-10deg);
}

.elementor-animation-skew-forward {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.elementor-animation-skew-forward:active, .elementor-animation-skew-forward:focus, .elementor-animation-skew-forward:hover {
  transform: skew(-10deg);
}

.elementor-animation-skew-backward {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.elementor-animation-skew-backward:active, .elementor-animation-skew-backward:focus, .elementor-animation-skew-backward:hover {
  transform: skew(10deg);
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-vertical:active, .elementor-animation-wobble-vertical:focus, .elementor-animation-wobble-vertical:hover {
  animation-name: elementor-animation-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-horizontal:active, .elementor-animation-wobble-horizontal:focus, .elementor-animation-wobble-horizontal:hover {
  animation-name: elementor-animation-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-to-bottom-right:active, .elementor-animation-wobble-to-bottom-right:focus, .elementor-animation-wobble-to-bottom-right:hover {
  animation-name: elementor-animation-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-to-top-right:active, .elementor-animation-wobble-to-top-right:focus, .elementor-animation-wobble-to-top-right:hover {
  animation-name: elementor-animation-wobble-to-top-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-top {
  transform-origin: 0 100%;
}

.elementor-animation-wobble-top:active, .elementor-animation-wobble-top:focus, .elementor-animation-wobble-top:hover {
  animation-name: elementor-animation-wobble-top;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-bottom {
  transform-origin: 100% 0;
}

.elementor-animation-wobble-bottom:active, .elementor-animation-wobble-bottom:focus, .elementor-animation-wobble-bottom:hover {
  animation-name: elementor-animation-wobble-bottom;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-wobble-skew:active, .elementor-animation-wobble-skew:focus, .elementor-animation-wobble-skew:hover {
  animation-name: elementor-animation-wobble-skew;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes elementor-animation-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
.elementor-animation-buzz:active, .elementor-animation-buzz:focus, .elementor-animation-buzz:hover {
  animation-name: elementor-animation-buzz;
  animation-duration: 0.15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes elementor-animation-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);
  }
}
.elementor-animation-buzz-out:active, .elementor-animation-buzz-out:focus, .elementor-animation-buzz-out:hover {
  animation-name: elementor-animation-buzz-out;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* @todo: ytm-effect */
.yaht-ico .post-thumbnail {
  display: inline-block;
}

[class^=ytm-effect-] .post,
[class*=" ytm-effect-"] .post {
  overflow: hidden;
}

.slick-arrow .yaht-link,
.tab-switcher,
.arrows-effect-yes .slick-arrow,
.ytm-effect-change-image .post .thumbnail-wrap img,
[class^=ytm-effect-] .post-thumbnail,
[class*=" ytm-effect-"] .post-thumbnail,
[class^=use-effect--],
[class*=" use-effect--"] {
  -webkit-transition: all 0.45s ease-out !important;
  -moz-transition: all 0.45s ease-out !important;
  -ms-transition: all 0.45s ease-out !important;
  -o-transition: all 0.45s ease-out !important;
  transition: all 0.45s ease-out !important;
}

.hv-effect:before,
.hv-effect:after,
.hv-effect span:before,
.hv-effect span:after {
  background-color: transparent;
  transition: all 0.45s ease-out;
  opacity: 0;
  position: absolute;
  content: "";
  z-index: 3;
}

.hv-00 .post {
  overflow: hidden;
}
.hv-00 .hv-effect:before, .hv-00 .hv-effect:after,
.hv-00 .hv-effect span:before,
.hv-00 .hv-effect span:after {
  height: 50%;
  width: 50%;
  z-index: 1;
}
.hv-00 .hv-effect:before {
  top: 0;
  right: 0;
}
.hv-00 .hv-effect:after {
  bottom: 0;
  left: 0;
}
.hv-00 .hv-effect span:before {
  top: 0;
  left: 0;
}
.hv-00 .hv-effect span:after {
  bottom: 0;
  right: 0;
}
.hv-00 .post:hover .hv-effect:before, .hv-00 .post:hover .hv-effect:after,
.hv-00 .post:hover .hv-effect span:before,
.hv-00 .post:hover .hv-effect span:after, .hv-00.post:hover .hv-effect:before, .hv-00.post:hover .hv-effect:after,
.hv-00.post:hover .hv-effect span:before,
.hv-00.post:hover .hv-effect span:after {
  -webkit-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -ms-transform: translate(0, 0) scale(1);
  -o-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

/* ytm-effect-blocks-rotate-in-left
  ----------------------------- */
.ytm-effect-hv-001 .hv-effect:before {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ytm-effect-hv-001 .hv-effect:after {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ytm-effect-hv-001 .hv-effect span:before {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.ytm-effect-hv-001 .hv-effect span:after {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

/* ytm-effect-blocks-zoom-top-left
  ----------------------------- */
.ytm-effect-hv-002 .hv-effect:before,
.ytm-effect-hv-002 .hv-effect:after,
.ytm-effect-hv-002 .hv-effect > span:before,
.ytm-effect-hv-002 .hv-effect > span:after {
  -webkit-transform: scale(0.05);
  -moz-transform: scale(0.05);
  -ms-transform: scale(0.05);
  -o-transform: scale(0.05);
  transform: scale(0.05);
}
.ytm-effect-hv-002 .hv-effect:after {
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.ytm-effect-hv-002 .hv-effect:before {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.ytm-effect-hv-002 span:before {
  -webkit-transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.ytm-effect-hv-002 span:after {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ytm-effect-hv-002:hover .hv-effect:before {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.ytm-effect-hv-002:hover .hv-effect:after {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.ytm-effect-hv-002:hover span:before {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ytm-effect-hv-002:hover span:after {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* @todo: imghvr-strip-shutter-*
   ----------------------------- */
.hv-01:hover .hv-effect:before, .hv-01:hover .hv-effect:after, .hv-01:hover .hv-effect > span:before, .hv-01:hover .hv-effect > span:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* imghvr-strip-shutter-right
  ----------------------------- */
.ytm-effect-hv-011 .hv-effect:before, .ytm-effect-hv-011 .hv-effect:after, .ytm-effect-hv-011 .hv-effect > span:before, .ytm-effect-hv-011 .hv-effect > span:after {
  width: 25%;
  height: 100%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  top: 0;
}
.ytm-effect-hv-011 .hv-effect:before {
  left: 0;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ytm-effect-hv-011 .hv-effect:after {
  left: 25%;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.ytm-effect-hv-011 .hv-effect > span:before {
  left: 50%;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.ytm-effect-hv-011 .hv-effect > span:after {
  left: 75%;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.ytm-effect-hv-012 .hv-effect:before, .ytm-effect-hv-012 .hv-effect:after, .ytm-effect-hv-012 .hv-effect > span:before, .ytm-effect-hv-012 .hv-effect > span:after {
  width: 100%;
  height: 25%;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: left center;
  left: 0;
}
.ytm-effect-hv-012 .hv-effect:before {
  top: 0;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ytm-effect-hv-012 .hv-effect:after {
  top: 25%;
  -webkit-transition-delay: 0.105s;
  -moz-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.ytm-effect-hv-012 .hv-effect > span:before {
  top: 50%;
  -webkit-transition-delay: 0.21s;
  -moz-transition-delay: 0.21s;
  transition-delay: 0.21s;
}
.ytm-effect-hv-012 .hv-effect > span:after {
  top: 75%;
  -webkit-transition-delay: 0.35s;
  -moz-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.ytm-effect-hv-013 .hv-effect:before, .ytm-effect-hv-013 .hv-effect:after, .ytm-effect-hv-013 .hv-effect > span:before, .ytm-effect-hv-013 .hv-effect > span:after {
  width: 100%;
  height: 25%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  left: 0;
}
.ytm-effect-hv-013 .hv-effect:before {
  top: 0;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ytm-effect-hv-013 .hv-effect:after {
  top: 25%;
  -webkit-transition-delay: 0.105s;
  -moz-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.ytm-effect-hv-013 .hv-effect > span:before {
  top: 50%;
  -webkit-transition-delay: 0.21s;
  -moz-transition-delay: 0.21s;
  transition-delay: 0.21s;
}
.ytm-effect-hv-013 .hv-effect > span:after {
  top: 75%;
  -webkit-transition-delay: 0.35s;
  -moz-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

/*hv-02*/
.hv-02 .hv-effect i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.hv-02 .hv-effect::before,
.hv-02 .hv-effect::after {
  width: 0;
  height: 2px;
  transition: all 0.3s linear;
  opacity: 1;
}
.hv-02 .hv-effect span::before,
.hv-02 .hv-effect span::after {
  width: 2px;
  height: 0;
  transition: all 0.3s linear;
  opacity: 1;
}
.hv-02 .post:hover .hv-effect i, .hv-02.post:hover .hv-effect i {
  opacity: 0.15;
}
.hv-02 .post:hover .hv-effect::before,
.hv-02 .post:hover .hv-effect::after, .hv-02.post:hover .hv-effect::before,
.hv-02.post:hover .hv-effect::after {
  width: calc(100% - 40px);
}
.hv-02 .post:hover .hv-effect span::before,
.hv-02 .post:hover .hv-effect span::after, .hv-02.post:hover .hv-effect span::before,
.hv-02.post:hover .hv-effect span::after {
  height: calc(100% - 40px);
}

.ytm-effect-hv-021 .hv-effect::before,
.ytm-effect-hv-021 .hv-effect::after {
  transition-delay: 0.3s;
}
.ytm-effect-hv-021 .hv-effect span::before,
.ytm-effect-hv-021 .hv-effect span::after {
  transition-delay: 0s;
}
.ytm-effect-hv-021 .hv-effect::before {
  right: 20px;
  top: 20px;
}
.ytm-effect-hv-021 .hv-effect::after {
  left: 20px;
  bottom: 20px;
}
.ytm-effect-hv-021 .hv-effect span::before {
  left: 20px;
  top: 20px;
}
.ytm-effect-hv-021 .hv-effect span::after {
  right: 20px;
  bottom: 20px;
}
.ytm-effect-hv-021 .post:hover .hv-effect::before,
.ytm-effect-hv-021 .post:hover .hv-effect::after, .ytm-effect-hv-021.post:hover .hv-effect::before,
.ytm-effect-hv-021.post:hover .hv-effect::after {
  transition-delay: 0s;
}
.ytm-effect-hv-021 .post:hover .hv-effect span::before,
.ytm-effect-hv-021 .post:hover .hv-effect span::after, .ytm-effect-hv-021.post:hover .hv-effect span::before,
.ytm-effect-hv-021.post:hover .hv-effect span::after {
  transition-delay: 0.3s;
}

.ytm-effect-hv-022 .hv-effect::before,
.ytm-effect-hv-022 .btn-2::after {
  transition-delay: 0s;
}
.ytm-effect-hv-022 .hv-effect span::before,
.ytm-effect-hv-022 .hv-effect span::after {
  transition-delay: 0.45s;
}
.ytm-effect-hv-022 .hv-effect::before {
  right: 20px;
  top: 20px;
}
.ytm-effect-hv-022 .hv-effect::after {
  left: 20px;
  bottom: 20px;
}
.ytm-effect-hv-022 .hv-effect span::before {
  left: 20px;
  top: 20px;
}
.ytm-effect-hv-022 .hv-effect span::after {
  right: 20px;
  bottom: 20px;
}
.ytm-effect-hv-022 .post:hover .hv-effect:hover::before,
.ytm-effect-hv-022 .post:hover .hv-effect:hover::after, .ytm-effect-hv-022.post:hover .hv-effect:hover::before,
.ytm-effect-hv-022.post:hover .hv-effect:hover::after {
  transition-delay: 0.45s;
}
.ytm-effect-hv-022 .post:hover .hv-effect:hover span::before,
.ytm-effect-hv-022 .post:hover .hv-effect:hover span::after, .ytm-effect-hv-022.post:hover .hv-effect:hover span::before,
.ytm-effect-hv-022.post:hover .hv-effect:hover span::after {
  transition-delay: 0s;
}

.ytm-effect-hv-023 .hv-effect::after {
  left: 20px;
  bottom: 20px;
  transition-delay: 0.9s;
}
.ytm-effect-hv-023 .hv-effect span::after {
  transition-delay: 0.6s;
  right: 20px;
  bottom: 20px;
}
.ytm-effect-hv-023 .hv-effect::before {
  right: 20px;
  top: 20px;
  transition-delay: 0.3s;
}
.ytm-effect-hv-023 .hv-effect span::before {
  transition-delay: 0s;
  left: 20px;
  top: 20px;
}
.ytm-effect-hv-023 .post:hover .hv-effect::after, .ytm-effect-hv-023.post:hover .hv-effect::after {
  transition-delay: 0s;
}
.ytm-effect-hv-023 .post:hover .hv-effect span::after, .ytm-effect-hv-023.post:hover .hv-effect span::after {
  transition-delay: 0.3s;
}
.ytm-effect-hv-023 .post:hover .hv-effect::before, .ytm-effect-hv-023.post:hover .hv-effect::before {
  transition-delay: 0.6s;
}
.ytm-effect-hv-023 .post:hover .hv-effect span::before, .ytm-effect-hv-023.post:hover .hv-effect span::before {
  transition-delay: 0.9s;
}

.ytm-effect-hv-024 .hv-effect::after {
  right: 20px;
  bottom: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-024 .hv-effect span::after {
  right: 20px;
  bottom: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-024 .hv-effect::before {
  left: 20px;
  top: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-024 .hv-effect span::before {
  left: 20px;
  top: 20px;
  transition-duration: 0.4s;
}

.ytm-effect-hv-025 .hv-effect::after {
  left: 20px;
  bottom: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-025 .hv-effect span::after {
  right: 20px;
  top: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-025 .hv-effect::before {
  right: 20px;
  top: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-025 .hv-effect span::before {
  left: 20px;
  bottom: 20px;
  transition-duration: 0.4s;
}

.ytm-effect-hv-026 .hv-effect::before {
  left: 50%;
  top: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-026 .hv-effect::after {
  left: 50%;
  bottom: 20px;
  transition-duration: 0.4s;
}
.ytm-effect-hv-026 .hv-effect span::before {
  left: 20px;
  top: 50%;
  transition-duration: 0.4s;
}
.ytm-effect-hv-026 .hv-effect span::after {
  right: 20px;
  top: 50%;
  transition-duration: 0.4s;
}
.ytm-effect-hv-026 .post:hover .hv-effect::before,
.ytm-effect-hv-026 .post:hover .hv-effect::after, .ytm-effect-hv-026.post:hover .hv-effect::before,
.ytm-effect-hv-026.post:hover .hv-effect::after {
  left: 20px;
}
.ytm-effect-hv-026 .post:hover .hv-effect span::before,
.ytm-effect-hv-026 .post:hover .hv-effect span::after, .ytm-effect-hv-026.post:hover .hv-effect span::before,
.ytm-effect-hv-026.post:hover .hv-effect span::after {
  top: 20px;
}

.el-animation .hv-effect::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: 9;
}
.el-animation .post:hover .hv-effect::before, .el-animation.post:hover .hv-effect::before {
  opacity: 1;
  visibility: visible;
}

.ytm-effect-zoom.post:hover .post-thumbnail,
.ytm-effect-zoom .post:hover .post-thumbnail {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.ytm-effect-zoom_2.post:hover .post-thumbnail,
.ytm-effect-zoom_2 .post:hover .post-thumbnail {
  transition: all 5s ease-out;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}

.ytm-effect-zoom_3.post:hover .post-thumbnail,
.ytm-effect-zoom_3 .post:hover .post-thumbnail {
  transition: all 8s ease-out;
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  transform: scale(3);
}

.ytm-effect-zoom.zoom-in.post .post-thumbnail,
.ytm-effect-zoom.zoom-in .post .post-thumbnail {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.ytm-effect-zoom.zoom-in.post:hover .post-thumbnail,
.ytm-effect-zoom.zoom-in .post:hover .post-thumbnail {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.ytm-effect-translate-x.post:hover .post-thumbnail,
.ytm-effect-translate-x .post:hover .post-thumbnail {
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.ytm-effect-translate-x.revert.post:hover .post-thumbnail,
.ytm-effect-translate-x.revert .post:hover .post-thumbnail {
  -webkit-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.ytm-effect-translate-y.post:hover .post-thumbnail,
.ytm-effect-translate-y .post:hover .post-thumbnail {
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}

.ytm-effect-translate-y.revert.post:hover .post-thumbnail,
.ytm-effect-translate-y.revert .post:hover .post-thumbnail {
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.ytm-effect-change-image.opacity .product:hover .thumbnail-wrap img.primary-image {
  opacity: 0;
}

.ytm-effect-change-image.from-right .product:hover .thumbnail-wrap img.primary-image {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.ytm-effect-change-image.from-left .product:hover .thumbnail-wrap img.primary-image {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.ytm-effect-change-image.from-top .product:hover .thumbnail-wrap img.primary-image {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.ytm-effect-change-image.from-bottom .product:hover .thumbnail-wrap img.primary-image {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.ytm-effect-change-image.image-zoom .product:hover .thumbnail-wrap img.primary-image {
  opacity: 0;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}

.ytm-effect-change-image.image-zoom-in .product:hover .thumbnail-wrap img.primary-image {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.el-animation .post-thumbnail,
[class*=" use-effect"] {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

.ytm-effect-zoomIn.post:hover .post-thumbnail,
.ytm-effect-zoomIn .post:hover .post-thumbnail {
  animation-name: zoomIn;
}

.ytm-effect-zoomInDown.post:hover .post-thumbnail,
.ytm-effect-zoomInDown .post:hover .post-thumbnail {
  animation-name: zoomInDown;
}

.ytm-effect-zoomInLeft.post:hover .post-thumbnail,
.ytm-effect-zoomInLeft .post:hover .post-thumbnail {
  animation-name: zoomInLeft;
}

.ytm-effect-zoomInRight.post:hover .post-thumbnail,
.ytm-effect-zoomInRight .post:hover .post-thumbnail {
  animation-name: zoomInRight;
}

.ytm-effect-zoomInUp.post:hover .post-thumbnail,
.ytm-effect-zoomInUp .post:hover .post-thumbnail {
  animation-name: zoomInUp;
}

.ytm-effect-fadeIn.post:hover .post-thumbnail,
.ytm-effect-fadeIn .post:hover .post-thumbnail {
  animation-name: fadeIn;
}

.ytm-effect-fadeInDown.post:hover .post-thumbnail,
.ytm-effect-fadeInDown .post:hover .post-thumbnail {
  animation-name: fadeInDown;
}

.ytm-effect-fadeInLeft.post:hover .post-thumbnail,
.ytm-effect-fadeInLeft .post:hover .post-thumbnail {
  animation-name: fadeInLeft;
}

.ytm-effect-fadeInRight.post:hover .post-thumbnail,
.ytm-effect-fadeInRight .post:hover .post-thumbnail {
  animation-name: fadeInRight;
}

.ytm-effect-fadeInUp.post:hover .post-thumbnail,
.ytm-effect-fadeInUp .post:hover .post-thumbnail {
  animation-name: fadeInUp;
}

.ytm-effect-bounceIn.post:hover .post-thumbnail,
.ytm-effect-bounceIn .post:hover .post-thumbnail {
  animation-name: bounceIn;
}

.ytm-effect-bounceInDown.post:hover .post-thumbnail,
.ytm-effect-bounceInDown .post:hover .post-thumbnail {
  animation-name: bounceInDown;
}

.ytm-effect-bounceInLeft.post:hover .post-thumbnail,
.ytm-effect-bounceInLeft .post:hover .post-thumbnail {
  animation-name: bounceInLeft;
}

.ytm-effect-bounceInRight.post:hover .post-thumbnail,
.ytm-effect-bounceInRight .post:hover .post-thumbnail {
  animation-name: bounceInRight;
}

.ytm-effect-bounceInUp.post:hover .post-thumbnail,
.ytm-effect-bounceInUp .post:hover .post-thumbnail {
  animation-name: bounceInUp;
}

.ytm-effect-slideInDown.post:hover .post-thumbnail,
.ytm-effect-slideInDown .post:hover .post-thumbnail {
  animation-name: slideInDown;
}

.ytm-effect-slideInLeft.post:hover .post-thumbnail,
.ytm-effect-slideInLeft .post:hover .post-thumbnail {
  animation-name: slideInLeft;
}

.ytm-effect-slideInRight.post:hover .post-thumbnail,
.ytm-effect-slideInRight .post:hover .post-thumbnail {
  animation-name: slideInRight;
}

.ytm-effect-slideInUp.post:hover .post-thumbnail,
.ytm-effect-slideInUp .post:hover .post-thumbnail {
  animation-name: slideInUp;
}

.ytm-effect-rotateIn.post:hover .post-thumbnail,
.ytm-effect-rotateIn .post:hover .post-thumbnail {
  animation-name: rotateIn;
}

.ytm-effect-rotateInDownLeft.post:hover .post-thumbnail,
.ytm-effect-rotateInDownLeft .post:hover .post-thumbnail {
  animation-name: rotateInDownLeft;
}

.ytm-effect-rotateInDownRight.post:hover .post-thumbnail,
.ytm-effect-rotateInDownRight .post:hover .post-thumbnail {
  animation-name: rotateInDownRight;
}

.ytm-effect-rotateInUpLeft.post:hover .post-thumbnail,
.ytm-effect-rotateInUpLeft .post:hover .post-thumbnail {
  animation-name: rotateInUpLeft;
}

.ytm-effect-rotateInUpRight.post:hover .post-thumbnail,
.ytm-effect-rotateInUpRight .post:hover .post-thumbnail {
  animation-name: rotateInUpRight;
}

.ytm-effect-bounce.post:hover .post-thumbnail,
.ytm-effect-bounce .post:hover .post-thumbnail {
  animation-name: bounce;
}

.ytm-effect-flash.post:hover .post-thumbnail,
.ytm-effect-flash .post:hover .post-thumbnail {
  animation-name: flash;
}

.ytm-effect-pulse.post:hover .post-thumbnail,
.ytm-effect-pulse .post:hover .post-thumbnail {
  animation-name: pulse;
}

.ytm-effect-rubberBand.post:hover .post-thumbnail,
.ytm-effect-rubberBand .post:hover .post-thumbnail {
  animation-name: rubberBand;
}

.ytm-effect-shake.post:hover .post-thumbnail,
.ytm-effect-shake .post:hover .post-thumbnail {
  animation-name: shake;
}

.ytm-effect-rollIn.post:hover .post-thumbnail,
.ytm-effect-rollIn .post:hover .post-thumbnail {
  animation-name: rollIn;
}

.ytm-effect-lightSpeedIn.post:hover .post-thumbnail,
.ytm-effect-lightSpeedIn .post:hover .post-thumbnail {
  animation-name: lightSpeedIn;
}

.ytm-effect-jello.post:hover .post-thumbnail,
.ytm-effect-jello .post:hover .post-thumbnail {
  animation-name: jello;
}

.ytm-effect-wobble.post:hover .post-thumbnail,
.ytm-effect-wobble .post:hover .post-thumbnail {
  animation-name: wobble;
}

.ytm-effect-tada.post:hover .post-thumbnail,
.ytm-effect-tada .post:hover .post-thumbnail {
  animation-name: tada;
}

.ytm-effect-swing.post:hover .post-thumbnail,
.ytm-effect-swing .post:hover .post-thumbnail {
  animation-name: swing;
}

.ytm-effect-headShake.post:hover .post-thumbnail,
.ytm-effect-headShake .post:hover .post-thumbnail {
  animation-name: headShake;
}

.ytm-effect-grow.post:hover .post-thumbnail,
.ytm-effect-grow .post:hover .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
}

.ytm-effect-grow.post:hover .post-thumbnail,
.ytm-effect-grow .post:hover .post-thumbnail {
  transform: scale(1.1);
}

/* Shrink */
.ytm-effect-shrink .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
}

.ytm-effect-shrink.post:hover .post-thumbnail,
.ytm-effect-shrink .post:hover .post-thumbnail {
  transform: scale(0.9);
}

.ytm-effect-pulse.post:hover .post-thumbnail,
.ytm-effect-pulse .post:hover .post-thumbnail {
  animation-name: elementor-animation-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ytm-effect-pulse-grow.post:hover .post-thumbnail,
.ytm-effect-pulse-grow .post:hover .post-thumbnail {
  animation-name: elementor-animation-pulse-grow;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.ytm-effect-pulse-shrink.post:hover .post-thumbnail,
.ytm-effect-pulse-shrink .post:hover .post-thumbnail {
  animation-name: elementor-animation-pulse-shrink;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.ytm-effect-push.post:hover .post-thumbnail,
.ytm-effect-push .post:hover .post-thumbnail {
  animation-name: elementor-animation-push;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.ytm-effect-pop.post:hover .post-thumbnail,
.ytm-effect-pop .post:hover .post-thumbnail {
  animation-name: elementor-animation-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.ytm-effect-bounce-in .post-thumbnail {
  transition-duration: 0.5s;
}

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

.ytm-effect-bounce-out .post-thumbnail {
  transition-duration: 0.5s;
}

.ytm-effect-bounce-out.post:hover .post-thumbnail,
.ytm-effect-bounce-out .post:hover .post-thumbnail {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.ytm-effect-rotate .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
}

.ytm-effect-rotate.post:hover .post-thumbnail,
.ytm-effect-rotate .post:hover .post-thumbnail {
  transform: rotate(4deg);
}

.ytm-effect-grow-rotate .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
}

.ytm-effect-grow-rotate.post:hover .post-thumbnail,
.ytm-effect-grow-rotate .post:hover .post-thumbnail {
  transform: scale(1.1) rotate(4deg);
}

.ytm-effect-float .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.ytm-effect-float.post:hover .post-thumbnail,
.ytm-effect-float .post:hover .post-thumbnail {
  transform: translateY(-8px);
}

.ytm-effect-sink .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.ytm-effect-sink.post:hover .post-thumbnail,
.ytm-effect-sink .post:hover .post-thumbnail {
  transform: translateY(8px);
}

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

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

.ytm-effect-skew .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
}

.ytm-effect-skew.post:hover .post-thumbnail,
.ytm-effect-skew .post:hover .post-thumbnail {
  transform: skew(-10deg);
}

.ytm-effect-skew-forward .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.ytm-effect-skew-forward.post:hover .post-thumbnail,
.ytm-effect-skew-forward .post:hover .post-thumbnail {
  transform: skew(-10deg);
}

.ytm-effect-skew-backward .post-thumbnail {
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.ytm-effect-skew-backward.post:hover .post-thumbnail,
.ytm-effect-skew-backward .post:hover .post-thumbnail {
  transform: skew(10deg);
}

.ytm-effect-wobble-vertical.post:hover .post-thumbnail,
.ytm-effect-wobble-vertical .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-horizontal.post:hover .post-thumbnail,
.ytm-effect-wobble-horizontal .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-horizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-to-bottom-right.post:hover .post-thumbnail,
.ytm-effect-wobble-to-bottom-right .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-to-top-right.post:hover .post-thumbnail,
.ytm-effect-wobble-to-top-right .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-to-top-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-top .post-thumbnail {
  transform-origin: 0 100%;
}

.ytm-effect-wobble-top.post:hover .post-thumbnail,
.ytm-effect-wobble-top .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-top;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-bottom .post-thumbnail {
  transform-origin: 100% 0;
}

.ytm-effect-wobble-bottom.post:hover .post-thumbnail,
.ytm-effect-wobble-bottom .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-bottom;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-wobble-skew.post:hover .post-thumbnail,
.ytm-effect-wobble-skew .post:hover .post-thumbnail {
  animation-name: elementor-animation-wobble-skew;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.ytm-effect-buzz.post:hover .post-thumbnail,
.ytm-effect-buzz .post:hover .post-thumbnail {
  animation-name: elementor-animation-buzz;
  animation-duration: 0.15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ytm-effect-buzz-out.post:hover .post-thumbnail,
.ytm-effect-buzz-out .post:hover .post-thumbnail {
  animation-name: elementor-animation-buzz-out;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.elementor-text-editor a:hover * {
  color: inherit !important;
}

@media (min-width: 1200px) {
  .arrows-effect-yes.arrow-slide-out + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-fade + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-slide-out .slick-arrow,
  .arrows-effect-yes.arrow-fade .slick-arrow {
    opacity: 0;
    visibility: hidden;
  }
  .arrows-effect-yes.arrow-zoom + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-zoom .slick-arrow {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  .arrows-effect-yes.arrow-slide-out:not(:hover) + .carousel-arrows-wrap .slick-arrow.slick-prev,
  .arrows-effect-yes.arrow-slide-out:not(:hover) .slick-arrow.slick-prev {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  .arrows-effect-yes.arrow-slide-out:not(:hover) + .carousel-arrows-wrap .slick-arrow.slick-next,
  .arrows-effect-yes.arrow-slide-out:not(:hover) .slick-arrow.slick-next {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  .arrows-effect-yes.arrow-slide-out:hover + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-fade:hover + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-slide-out:hover .slick-arrow,
  .arrows-effect-yes.arrow-fade:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
  }
  .arrows-effect-yes.arrow-zoom:hover + .carousel-arrows-wrap .slick-arrow,
  .arrows-effect-yes.arrow-zoom:hover .slick-arrow {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
  }
}

/*# sourceMappingURL=hover.css.map */
