.about-hero {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 180px 40px 245px;
  position: relative;
}

.about-hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-left: 7%;
}

.about-hero-title {
  font-size: 48px;
  color: #1E2B56;
}

.about-hero-subtitle {
  display: block;
  font-size: 70px;
  font-weight: 900;
  color: #1E2B56;
}

.about-hero-desc {
  font-size: 18px;
  color: #1E2B56;
  margin-top: 40px;
}

.about-hero-line {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 176px;
  height: 1px;
  background: #1E2B56;
  margin-top: 157px;
  transform: rotate(90deg);
  z-index: 10;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 16px 120px;
  }
  .about-hero-inner {
    margin-left: 0;
  }
  .about-hero-title {
    font-size: 24px;
  }
  .about-hero-subtitle {
    font-size: 36px;
  }
  .about-hero-desc {
    font-size: 16px;
  }
  .about-hero-line {
    left: 0;
    width: 80px;
  }
}