.hero_techcheck {
  background-image: url("../img/techcheck/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 800px;
  text-align: center;
  padding-top: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.hero_techcheck .center_logo {
  position: relative;
  z-index: 1;
  margin: 0 auto 10px;
}

.hero_techcheck_bottom {
  margin-top: auto;
  position: relative;
  width: 100%;
}

.hero_techcheck_scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero_techcheck_columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero_techcheck_bottom.is-visible .hero_techcheck_scrim,
.hero_techcheck_bottom.is-visible .hero_techcheck_columns {
  opacity: 1;
}

.hero_techcheck_col {
  text-align: left;
}

.techcheck_title_graphic {
  width: min(420px, 100%);
  height: auto;
  display: block;
}

.copy_col .title_light {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #efe9e5;
}

.copy_col .text_light {
  font-size: 18px;
  line-height: 1.45;
  color: #efe9e5;
}

.techcheck_cta_row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.techcheck_cta_row .div_button_1 {
  margin-top: 20px;
}

.not_responsive{
  display:flex;gap:10px;
}

@media only screen and (max-width: 600px) {
  .hero_techcheck {
    height: 800px;
    padding-top: 30px;
  }

  .hero_techcheck .center_logo {
    display: none;
  }

  .hero_techcheck_columns {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    text-align: left;
  }

  .hero_techcheck_col {
    text-align: left;
  }

  .techcheck_title_graphic {
    margin: 0;
    width: min(140px, 100%);
  }

  .copy_col .title_light {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .copy_col .text_light {
    font-size: 12px;
    text-align: left;
    display: none;
  }

  .techcheck_cta_row {
    justify-content: flex-start;
  }

  .techcheck_cta_row .div_button_1 {
    margin-top: 6px;
    height: 28px;
    width: 120px;
    font-size: 14px;
    padding-top: 6px;
  }

  .not_responsive{
    display:inline;
  }
}
