/* ===============================
 * TRT GLOW BORDER ANIMATION
 * =============================== */

.glow-box{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

/* rotating strip */
.glow-box::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150%;
  background: linear-gradient(#ff914f, #000000);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  animation: glowRotate 6s linear infinite;
  z-index: 0;
}

/* inner area */
.glow-box::after{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  background: inherit;
  z-index: 1;
}

/* Elementor content safe */
.glow-box > .e-con-inner,
.glow-box > .elementor-element,
.glow-box > *{
  position: relative;
  z-index: 2;
}

@keyframes glowRotate{
  0%{
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100%{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}