@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
.features-block-style1 {
  position: relative;
  padding: 5px;
  z-index: 1;
  overflow: hidden;
}
.features-block-style1::before, .features-block-style1::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from var(--gradient-angle), var(--theme-color3), #F55CAD, var(--theme-color1), #F55CAD, var(--theme-color1));
  border-radius: inherit;
  animation: rotate 2.5s linear infinite;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
}
.features-block-style1 .features-block-4 {
  background-color: #171719;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 45px 50px 35px 45px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .features-block-style1 .features-block-4 {
    padding: 30px 30px 27px 30px;
  }
}
.features-block-style1 .features-block-4 .icon img, .features-block-style1 .features-block-4 .icon i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  display: inline-block;
}
.features-block-style1 .features-block-4 .content {
  margin-top: 40px;
}
.features-block-style1 .features-block-4 .content .title {
  font-size: 24px;
  font-weight: 500;
}
.features-block-style1 .features-block-4 .content .title a {
  color: #fff;
}
.features-block-style1 .features-block-4 .content .title a:hover {
  color: var(--theme-color1);
}
.features-block-style1 .features-block-4 .content ul {
  margin: 0;
}
.features-block-style1 .features-block-4 .content ul li {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  list-style: none;
}
.features-block-style1 .features-block-4 .content ul li:not(:last-child) {
  margin-bottom: 5px;
}
.features-block-style1 .features-block-4 .content ul li::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--text-color);
}
.features-block-style1 .features-block-4 .content .service-btn {
  display: inline-flex;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  text-decoration: underline;
  transition: all 300ms ease;
}
.features-block-style1 .features-block-4 .content .service-btn:hover {
  text-decoration-color: var(--theme-color1);
}
.features-block-style1 .features-block-4 .content .service-btn span {
  text-decoration: underline;
  transition: all 300ms ease;
}
.features-block-style1 .features-block-4 .content .service-btn i {
  transform: rotate(-45deg);
  text-decoration: none;
  transition: all 300ms ease;
}
.features-block-style1:hover::before, .features-block-style1:hover::after {
  opacity: 1;
  visibility: visible;
}
.features-block-style1:hover .icon img, .features-block-style1:hover .icon i {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}