/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

.primary {
	margin-top: 0 !important
}

.invert-1 {
	filter: invert(1)
}

.gs-video-overlay .gs-play-icon {
	width: 8px;
	height: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.gs-video-overlay .gs-play-icon span {
    border-left: 22px solid #fff;
    border-top: 12px solid transparent;
	border-bottom: 13px solid transparent;
}

.back-glow {
  position: relative;
  z-index: 1;
}

.back-glow img {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.back-glow::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  background: linear-gradient(270deg, #19BFF1, #002D59);
  background-size: 100% 200%;
  -webkit-filter: blur(2vw);
  -moz-filter: blur(2vw);
  -ms-filter: blur(2vw);
  filter: blur(2vw);
  opacity: 0.8;
  border-radius: inherit;
  animation: animateGlow 10s ease infinite;
  pointer-events: none;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.glow-text {
  animation: textColor 10s ease infinite;
}

@keyframes textColor {
  0% {
    color: #7e0fff;
  }
  50% {
    color: #0fffc1;
  }
  100% {
    color: #7e0fff;
  }
}

.hero-grid-lines {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  --grid-size: 56px;
  --grid-line: rgba(255, 255, 255, 0.08);
  --grid-glow: rgba(56, 189, 248, 0.32);
}

/* Grid fija: líneas horizontales y verticales */
.hero-grid-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);

  background-size: var(--grid-size) var(--grid-size);

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 80%,
    black 82%,
    transparent 100%
  );
}

/* Glow animado infinito, sin mover la grid */
.hero-grid-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 35%,
      var(--grid-glow) 50%,
      transparent 65%,
      transparent 100%
    );

  background-size: 300% 300%;
  mix-blend-mode: screen;
  opacity: 0.75;

  animation: heroGridGlowLoop 8s linear infinite;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%
    ),
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);

  mask-size:
    100% 100%,
    var(--grid-size) var(--grid-size),
    var(--grid-size) var(--grid-size);

  mask-composite: intersect;
}

.hero-grid-lines > * {
  position: relative;
  z-index: 1;
}

@keyframes heroGridGlowLoop {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-lines::after {
    animation: none;
  }
}

Si tu navegador no respeta bien mask-composite, usa esta versión más compatible. También evita cortes porque solo anima una capa repetida, no la grid:
.hero-grid-lines {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  --grid-size: 56px;
  --grid-line: rgba(255, 255, 255, 0.08);
  --grid-glow: rgba(56, 189, 248, 0.35);
}

.hero-grid-lines::before,
.hero-grid-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  transform-origin: bottom center;
  transform: perspective(1000px) rotateX(62deg) scale(5);
}

.hero-grid-lines::before {
  z-index: 0;

  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);

  background-size: var(--grid-size) var(--grid-size);

  mask-image: linear-gradient(
    to top,
    black 0%,
    black 45%,
    transparent 95%
  );
}

.hero-grid-lines::after {
  z-index: 0;

  background-image:
    linear-gradient(to right, transparent 45%, var(--grid-glow) 50%, transparent 55%),
    linear-gradient(to bottom, transparent 45%, var(--grid-glow) 50%, transparent 55%),
    linear-gradient(to right, var(--grid-glow) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-glow) 1px, transparent 1px);

  background-size:
    calc(var(--grid-size) * 8) 100%,
    100% calc(var(--grid-size) * 8),
    var(--grid-size) var(--grid-size),
    var(--grid-size) var(--grid-size);

  background-blend-mode: screen;
  opacity: 0.9;

  animation: heroGridLinesSmooth 50s linear infinite;

  mask-image: linear-gradient(
    to top,
    black 0%,
    rgba(0, 0, 0, 0.65) 40%,
    transparent 90%
  );
}

.hero-grid-lines > * {
  position: relative;
  z-index: 1;
}

@keyframes heroGridLinesSmooth {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      calc(var(--grid-size) * 8) 0,
      0 calc(var(--grid-size) * 8),
      0 calc(var(--grid-size) * 2),
      0 calc(var(--grid-size) * 2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-lines::after {
    animation: none;
  }
}