.about {
  width: 100%;
  height: max-content;
  background: var(--color-bg);
}

.about-header {
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
  justify-content: center;
}

.about-col {
  padding: 1em;
}

.about-col {
  flex: 1;
  max-width: 900px;
  text-align: center;
}



.about-col h2 {
  width: 85%;
  color: rgba(255, 255, 255, 0.125);
  transition: color 0.3s;
  text-align: center;
  margin: 0 auto;
}

.about-tagline-wrapper {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 1em;
}

.about-tagline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.about-tagline-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.about-copy {
  width: 100%;
  padding: 0 1em;
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.about-copy span {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .about-copy {
    width: 100%;
    padding: 5em 1em;
    font-size: 20px;
  }

  .about-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .about-col h2 {
    width: 100%;
    font-size: 70px;
  }

  .about-tagline-wrapper {
    min-height: 30vh;
    margin: 0;
    border-radius: 0;
  }
}
