@keyframes moving {
  from {
    transform: scale(100%);
  }
  to {
    transform: scale(200%);
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(20deg);
  }
}

.moving {
  animation-name: moving;
  animation-duration: 1.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.btnPlay:nth-child(1) .circle {
  animation-delay: 0.1s;
}
.btnPlay .circle2 {
  animation-delay: 0.7s;
}
.btnPlay .circle3 {
  animation-delay: 1s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
.rotate {
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.banner_img {
  background-image: url('../../image/banner/golmohamadi3.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 40%;
}

.inverted {
  -webkit-mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20600%20600%22%3E%3Cpath%20d%3D%22M40%2C0H560A40%2C40%200%2C0%2C1%20600%2C40V560A40%2C40%200%2C0%2C1%20560%2C600H340A40%2C40%200%2C0%2C1%20300%2C560V340A40%2C40%200%2C0%2C0%20260%2C300H40A40%2C40%200%2C0%2C1%200%2C260V40A40%2C40%200%2C0%2C1%2040%2C0Z%22%20fill%3D%22%23fff%22%20%2F%3E%3C%2Fsvg%3E')
    no-repeat center / contain;
  mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20600%20600%22%3E%3Cpath%20d%3D%22M40%2C0H560A40%2C40%200%2C0%2C1%20600%2C40V560A40%2C40%200%2C0%2C1%20560%2C600H340A40%2C40%200%2C0%2C1%20300%2C560V340A40%2C40%200%2C0%2C0%20260%2C300H40A40%2C40%200%2C0%2C1%200%2C260V40A40%2C40%200%2C0%2C1%2040%2C0Z%22%20fill%3D%22%23fff%22%20%2F%3E%3C%2Fsvg%3E')
    no-repeat center / contain;
  aspect-ratio: 1 / 1;
}

.slider_product.owl-carousel .owl-nav button.owl-next,
.slider_product.owl-carousel .owl-nav button.owl-prev {
  background: var(--color-theme-primary);
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_product.owl-carousel .owl-nav button.owl-next span,
.slider_product.owl-carousel .owl-nav button.owl-prev span {
  margin-bottom: 6px;
}

.owl-carousel .owl-stage-outer {
  padding: 1rem 0;
}

.owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot.active span {
  transition: width 0.5s;
}
.owl-theme .owl-dots .owl-dot.active span {
  width: 1.75rem;
}

.slider_product.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  inset-inline-end: -13px;
  top: 50%;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.slider_product.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  inset-inline-start: -13px;
  top: 50%;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.slider_product.owl-carousel:hover .owl-nav button.owl-next {
  inset-inline-end: -10px;
  opacity: 1;
}

.slider_product.owl-carousel:hover .owl-nav button.owl-prev {
  inset-inline-end: -10px;
  opacity: 1;
}
.owl-theme .owl-dots .owl-dot span {
  background-color: var(--theme-primary);
  transition: width 0.5s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--theme-primary);
  width: 2rem;
  transition: width 0.5s;
}
