/* Trakcharge About Page Styles */
/* [Alpha Bravo] */

.about .hero {
      text-align: center;
    }

    .about .hero h1 {
      font-family: 'Courier New', Courier, monospace;
      font-weight: lighter;
    }
    .about .cta {
      text-align: center;
    }

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

.about .feature {
  text-align: center;
}

.about .feature-image {
  width: 50%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto 12px auto;
}


.about .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hide by default */
.dl-as {
  display: none;
}

/* Show only on small screens */
@media (max-width: 463px) {
.dl-as {
  display: grid;
  height: 1px;
  width: 91%;
  margin: 15px auto;
  background: repeating-linear-gradient(
    to right,
    var(--black, #000),
    var(--black, #000) 6px,
    transparent 6px,
    transparent 12px
  );
}
}