/**
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
*/

/* Background Class */
.hero-background {
    position: relative;
    
    overflow: hidden;
     background-color: #050505;

    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);

    background-size: 48px 48px;
    background-position: center;
}

/* Grid Pattern */
.hero-background::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 48px 48px;
    pointer-events: none;
    z-index: 1;
}

/* Dark Golden Shade Effect */
.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top center,
            rgba(180, 140, 60, 0.18),
            transparent 30%),
        radial-gradient(circle at center,
            rgba(255, 180, 60, 0.05),
            transparent 45%),
        linear-gradient(to bottom,
            rgba(0,0,0,0.1),
            rgba(0,0,0,0.85));

    pointer-events: none;
    z-index: 2;
}

/* Content Layer */
.hero-background > * {
    position: relative;
    z-index: 3;
}
.tagline-banner {
  width: 100%;
  overflow: hidden;
  background: #0000;
  padding: 14px 0;
  position: relative;
}

.tagline-banner-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 25s linear infinite;
}

.tagline-banner-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tagline-banner-text {
  color: #080808;
  font-size: 16px;
  font-weight: 600;
  padding: 0 18px;
  font-family: sans-serif;
}

.tagline-banner-sep {
  color: #080808;
  font-size: 18px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tagline-banner-text {
    font-size: 14px;
    padding: 0 12px;
  }
}