:root {
  --sidebar-width: 31rem;
  --layout-gap: 4rem;
  --wp--style--block-gap: clamp(3.5rem, 2.737rem + 1.404vw, 4rem);
}

@media (min-width: 1300px) {
  :root {
    --sidebar-width: 34rem;
    --layout-gap: 6rem;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.product-card__video {
  background: #181818;
  border: 1px solid rgba(109, 105, 105, 0.3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.product-card__video--wrap {
  text-align: center;
  padding: var(--wp--preset--spacing--small);
  border-radius: 10px;
  position: absolute;
  inset: 0;
}
.product-card__video .bg {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: absolute;
  inset: 0;
}
@media (max-width: 781px) {
  .product-card__video {
    aspect-ratio: 1/0.55;
  }
  .product-card__video video {
    width: auto;
    height: 100%;
  }
}
@media (min-width: 782px) {
  .product-card__video--wrap {
    display: flex;
  }
  .product-card__video video {
    width: 100%;
    height: auto;
  }
}
.product-card__content {
  display: flex;
  flex-direction: column;
}
.product-card__content .top {
  padding: 5rem 5rem 10rem 5rem;
  background: linear-gradient(180deg, #181818 0%, #272727 100%);
  border: 1px solid rgba(109, 105, 105, 0.3);
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 0 100%);
}
.product-card__content .bottom {
  min-height: 220px;
  padding: 9rem 0 0 0;
  background: linear-gradient(180deg, #272727 0%, #181818 100%);
  border: 1px solid rgba(109, 105, 105, 0.3);
  border-radius: 10px;
  clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}
.product-card h3 {
  margin-bottom: 1.35ch;
}
.product-card h3 span {
  display: block;
  font-size: var(--wp--preset--font-size--font-32);
  color: #F5007B;
}
.product-card h3 em {
  font-family: var(--wp--preset--font-family--insig);
  font-size: var(--wp--preset--font-size--font-50);
  font-style: normal;
  text-transform: uppercase;
}
.product-card .sub {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-22);
  color: #ACD1C9;
}
.product-card .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: -5.5rem;
  position: absolute;
  bottom: 50%;
  left: 5rem;
  right: 3rem;
}
.product-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-16);
  line-height: 1.025;
  text-align: center;
  text-decoration: none;
  padding: 1.5ch 3rem;
  color: #fff;
  border-radius: 5rem;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #F5007B;
  border: 1px solid #F5007B;
}
.product-card .btn:hover, .product-card .btn:active, .product-card .btn:focus {
  background: transparent;
}
.product-card svg {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.75s ease-out forwards 0.15s;
}
.product-card__stats {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
}
.product-card__stats .counter {
  text-align: center;
  padding: var(--wp--preset--spacing--normal) var(--wp--preset--spacing--small);
  background: linear-gradient(0deg, #181818 0%, #272727 100%);
  border: 1px solid rgba(109, 105, 105, 0.3);
  border-radius: 10px;
}
.product-card__stats .counter__number {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-42);
  margin: 0;
  color: #ACD1C9;
}
.product-card__stats .counter__title {
  font-weight: 300;
  margin: 0.3ch 0 0 0 !important;
  color: #fff;
}
@media (min-width: 600px) {
  .product-card__stats {
    flex-direction: row;
  }
  .product-card__stats .counter {
    width: calc(50% - 1rem);
    padding: var(--wp--preset--spacing--normal) 2.4rem;
  }
}
@media (min-width: 1024px) {
  .product-card__stats .counter {
    width: calc(25% - 1.5rem);
  }
}
@media (max-width: 781px) {
  .product-card__content .top {
    padding: 3rem 3rem 8rem 3rem;
  }
}
@media (min-width: 782px) {
  .product-card {
    margin-top: var(--wp--preset--spacing--m);
  }
  .product-card__info {
    flex-direction: row;
  }
  .product-card__video {
    flex: 1;
  }
  .product-card__content {
    flex: 1;
    order: -1;
  }
}
@media (min-width: 1200px) {
  .product-card__content .bottom {
    padding: 5rem 0 0 0;
  }
  .product-card .button-group {
    margin-bottom: -5.5rem;
  }
}
.product-card svg {
  opacity: 0;
}
.product-card svg .delay-0-5 {
  animation-delay: 0.5s !important;
}
.product-card svg .delay-1 {
  animation-delay: 1s !important;
}
.product-card svg .delay-1-5 {
  animation-delay: 1.5s !important;
}
.product-card svg .delay-2 {
  animation-delay: 2s !important;
}
.product-card svg .grid,
.product-card svg .icons,
.product-card svg .stroke {
  opacity: 0;
}
.product-card svg .stroke {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.product-card svg .circle circle:nth-child(1) {
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards 1.75s;
}
.product-card svg .circle circle:nth-child(2) {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}
.product-card svg .circle circle:nth-child(3) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.product-card svg .circle circle:nth-child(4) {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
}
.product-card svg .circle circle:nth-child(5) {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}
.product-card svg.anim .grid {
  opacity: 1;
}
.product-card svg.anim .stroke {
  animation: drawStroke 1.5s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 1;
}
.product-card svg.anim .circle circle {
  animation: drawStroke 1.5s ease-out forwards;
  animation-delay: 2s;
}