@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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E<path d="M20,0H180A20,20 0,0,1 200,20V80A20,20 0,0,1 180,100H120A20,20 0,0,0 100,120V180A20,20 0,0,1 80,200H20A20,20 0,0,1 0,180V20A20,20 0,0,1 20,0Z" fill="%23fff"/>%3C/svg%3E') no-repeat center / contain;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E<path d="M20,0H180A20,20 0,0,1 200,20V80A20,20 0,0,1 180,100H120A20,20 0,0,0 100,120V180A20,20 0,0,1 80,200H20A20,20 0,0,1 0,180V20A20,20 0,0,1 20,0Z" fill="%23fff"/>%3C/svg%3E') no-repeat center / contain;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  
  
}


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

.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;
  left: -13px;
  top: 50%;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
}

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

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

.slider_product.owl-carousel:hover .owl-nav button.owl-prev {
  right: -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;
}