 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0a0f1e;
    --navy2: #111827;
    --navy3: #1a2438;
    --steel: #2a3a5c;
    --gold: #c9a84c;
    --gold2: #e8c96a;
    --ice: #d4e3f7;
    --white: #f8faff;
    --muted: #7a8ba8;
    --border: rgba(201,168,76,0.18);
    --border2: rgba(255,255,255,0.07);
    --fs-hero: clamp(2.6rem, 6vw, 5.2rem);
    --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
    --fs-h3: clamp(1.1rem, 2vw, 1.35rem);
  }

  html { scroll-behavior: smooth; }


@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 2rem;
        color: #fff !important;
    }
}
  body {
    background: #041c3d;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: #1bc3d7; border-radius: 2px; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 75px;
    background: #fff;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border2);
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }

  .nav-logo-mark {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #127fd1, #1bc3d7);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: var(--navy);
    font-family: 'Syne', sans-serif;
  }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: #041c3d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #127fd1; }

  .nav-cta {
    background: linear-gradient(135deg, #127fd1, #1bc3d7);;
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 500 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85; color: var(--navy) !important; }

  .hamburger { display: none; flex-direction: column; gap: 0px; cursor: pointer;    }
  .togglbtn{
           color: #09254c !important; 
    }
  .hamburger span{
    display: block;
    width: 28px;
    height: 3px;
    background: #09254c !important;
    margin: 6px 0;
    transition: 0.3s;
}

  #hero {
    min-height: 100vh;
    display: flex;
    padding: 76px 0% 60px;
    position: relative;
    overflow: hidden;
    background: #041c3d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    flex-direction: column;
  }

  .hero-grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .orb1 { width: 600px; height: 600px; background: #2a5caa; top: -100px; right: -100px; animation-delay: 0s; }
  .orb2 { width: 400px; height: 400px; background: #1bc3d7; bottom: -50px; left: 10%; animation-delay: -4s; }

.hero-banner{

    width:100%;

    overflow:hidden;

}
.hero-banner img{

    width:100%;

    display:block;

    object-fit:cover;

}

  @keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  .hero-content { position: relative; z-index: 1; max-width: 800px; height: auto; margin-left: 2%;}

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid #1bc3d7;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-family: 'DM Mono', monospace;
    color: #1bc3d7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 15px;
    animation: fadeUp 0.8s ease both;
  }

  .badge-dot { width: 6px; height: 6px; background: #1bc3d7; border-radius: 50%; animation: pulse 2s infinite; }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: var(--fs-hero);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  h1 .accent { color: #1bc3d7; }
  h1 .line2 { display: block; color: #e6ecf5; opacity: 0.85; font-weight: 600; }

  .hero-sub {
    font-size: 1.1rem;
    color: #c8d3e4;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
    padding-top: 40px;
    /*position: relative;*/
    /*bottom: 150px;*/
    /*left: 10px;*/
  }

  .btn-primary {
    background: linear-gradient(135deg, #127fd1, #1bc3d7);
    color: var(--navy);
    border: none;
    padding: 15px 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.3); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 15px 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { border-color: #1bc3d7; background: rgba(201,168,76,0.06); }

  .hero-stats {
    display: flex; gap: 48px; flex-wrap: wrap;
    margin-top: 0px;
    padding-top: 40px;
    border-top: 1px solid var(--border2);
    animation: fadeUp 0.8s 0.4s ease both;
    margin-left: 2%;
  }

  .stat-item { }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .stat-num span { color: #1bc3d7; }
  .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-family: 'DM Mono', monospace;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .heroSwiper{

    width:100%;
    height:650px;

}

.heroSwiper img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}

.swiper-pagination-bullet{

    background:#fff;
    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#07469d;

}

  .ticker-wrap {
    background: linear-gradient(135deg, #127fd1, #1bc3d7);
    padding: 14px 0;
    overflow: hidden;
  }
  .ticker {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    display: flex; align-items: center; gap: 24px;
    padding: 0 32px;
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .ticker-sep { opacity: 0.4; }

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

  section { padding: 100px 5%; }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1bc3d7;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: #1bc3d7;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }

  #about { background: var(--navy2); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .about-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--navy3);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1bc3d7, transparent);
  }

  .spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
  }

  .spec-item { }
  .spec-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
  }
  .spec-val span { color: #1bc3d7; font-size: 1.1rem; }
  .spec-key {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  #products { background: var(--navy); }

  .products-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .products-intro p {
    color: var(--muted);
    max-width: 420px;
    font-size: 0.95rem;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .product-card {
    background: var(--navy2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }

  .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product-card:hover { border-color: var(--border); transform: translateY(-4px); }
  .product-card:hover::after { opacity: 1; }

  .product-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
  }

  .product-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }

  .product-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .product-specs {
    list-style: none;
    margin-bottom: 28px;
  }
  .product-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    padding: 6px 0;
    border-bottom: 1px solid var(--border2);
  }
  .product-specs li:last-child { border-bottom: none; }
  .spec-dot { width: 4px; height: 4px; background: #1bc3d7; border-radius: 50%; flex-shrink: 0; }

  .product-tag {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: #1bc3d7;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .product-link {
    display: flex; align-items: center; gap: 6px;
    color: #1bc3d7;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: gap 0.2s;
  }
  .product-link:hover { gap: 10px; }

  #why { background: var(--navy3); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 60px;
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
  }

  .why-item {
    background: var(--navy2);
    padding: 40px 32px;
    border-right: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    transition: background 0.3s;
  }
  .why-item:hover { background: var(--navy3); }

  .why-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
  }

  .why-item h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
  }

  .why-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
  }

  #industries { background: var(--navy2); }

  .industries-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    margin-top: 0;
  }

  .industries-left { padding-top: 8px; }
  .industries-left p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-top: 16px;
  }

  .industry-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .industry-card {
    background: var(--navy3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: border-color 0.3s, transform 0.2s;
  }
  .industry-card:hover { border-color: #085895; transform: translateX(6px); }

  .industry-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #127fd1;
    min-width: 40px;
  }

  .industry-ico { font-size: 1.6rem; }

  .industry-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .industry-info p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .industry-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 1.1rem;
    transition: color 0.2s, transform 0.2s;
  }
  .industry-card:hover .industry-arrow { color: #1bc3d7; transform: translateX(4px); }

  #certs { background: var(--navy); padding: 72px 5%; }

  .certs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .certs-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .cert-badges {
    display: flex; gap: 16px; flex-wrap: wrap;
  }

  .cert-badge {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 24px;
    display: flex; align-items: center; gap: 12px;
    background: rgba(201,168,76,0.04);
    transition: background 0.2s;
  }
  .cert-badge:hover { background: rgba(201,168,76,0.08); }
  .cert-badge-icon { font-size: 1.2rem; }
  .cert-badge-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1bc3d7;
    letter-spacing: 0.06em;
  }
  .cert-badge-sub {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 2px;
  }

  #contact { background: var(--navy2); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .contact-info p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 24px;
  }

  .detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
  }

  .detail-text label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .detail-text span {
    font-size: 0.9rem;
    color: var(--white);
  }

  .contact-form-wrap {
    background: var(--navy3);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1bc3d7, transparent);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--navy2);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: #1bc3d7; }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select option { background: var(--navy2); }

  .form-submit { width: 100%; margin-top: 4px; justify-content: center; font-size: 0.92rem; padding: 16px; }

  .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 14px;
    font-family: 'DM Mono', monospace;
  }

  footer {
    background: #fff;
    border-top: 1px solid var(--border2);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Placeholder Color */

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#07469d;
    opacity:1; /* Firefox ke liye */
}

/* Cross Browser Support */

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder{
    color:#07469d;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder{
    color:#07469d;
    opacity:1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder{
    color:#07469d;
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder{
    color:#07469d;
}

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    display: flex; align-items: center; gap: 10px;
  }

  .footer-links {
    display: flex; gap: 28px; list-style: none;
  }
  .text-center{
      text-align:center;
  }
  .footer-links a {
    color: #041c3d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: #1bc3d7; }

  .footer-copy {
          background: var(--navy2);
    font-size: 0.78rem;
    color: #fff;
    font-family: 'DM Mono', monospace;
  }

  .whatsapp-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 99;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
  .whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    .about-grid, .industries-intro, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 70px; left: 0; right: 0;
      background: #041c3d;
      padding: 24px 5%;
      gap: 20px;
      border-bottom: 1px solid var(--border2);
    }
    .hamburger { display: flex;  }
     .nav-links{
        background:#09254c;   /* Mobile menu background */
    }

    .nav-links li a{
        color:#fff !important;
    }

    .nav-links li a:hover{
        color:#fff !important;
    }

    .nav-cta{
        background:#D4242C;
        color:#fff !important;
    }
    .hero-stats { gap: 28px; }
    .certs-inner { flex-direction: column; align-items: flex-start; }
    footer { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .industries-left { padding-top: 0; }
    .togglbtn{
           color: #09254c !important; 
    }
  }
  @media(max-width:768px){

.heroSwiper{

height:250px;

}
 h2 {
         color: #fff !important;
    }

}

  @media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 430px) {
      .hero-actions {
        /*position: relative;*/
        /*bottom: 100px;*/
        /*left: 7px;*/
    }
  }