@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
.features-block-style1 {
  position: relative;
  z-index: 9;
  margin-bottom: 24px;
}
.features-block-style1::before, .features-block-style1::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.1rem;
  background: conic-gradient(from var(--gradient-angle), var(--theme-color2), var(--theme-color1), var(--theme-color2), var(--theme-color1), var(--theme-color2));
  border-radius: inherit;
  -webkit-animation: rotate 2.5s linear infinite;
  animation: rotate 2.5s linear infinite;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.features-block-style1:hover::before,
.features-block-style1 ::after {
  opacity: 1;
}
.features-block-style1 .choose-us-box-3 {
  padding: 47px 60px;
  background: #151515;
  z-index: 1;
  backdrop-filter: blur(3px);
  position: relative;
}
@media (max-width: 575.98px) {
  .features-block-style1 .choose-us-box-3 {
    padding: 30px 20px;
  }
}
.features-block-style1 .choose-us-box-3 .number {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-black);
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 47px;
  right: 38px;
}
.features-block-style1 .choose-us-box-3::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
  content: "";
  background-color: var(--theme-color1);
}
.features-block-style1 .choose-us-box-3 .icon i, .features-block-style1 .choose-us-box-3 .icon img, .features-block-style1 .choose-us-box-3 .icon svg {
  transition: all 900ms ease;
  display: inline-block;
}
.features-block-style1 .choose-us-box-3 .content {
  margin-top: 30px;
}
.features-block-style1 .choose-us-box-3 .content .features-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.features-block-style1 .choose-us-box-3 .content p {
  font-size: 18px;
  max-width: 490px;
  line-height: 156%;
}
.features-block-style1:hover .choose-us-box-3 .icon i, .features-block-style1:hover .choose-us-box-3 .icon img, .features-block-style1:hover .choose-us-box-3 .icon svg {
  transform: rotateY(360deg);
}