.about-hero {
  width: 100%;
  padding: 50px 0;
  background-color: #001f3f;
}
.about-hero-area {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: end;
}
.about-hero-content {
  border-left: 5px solid #ffc631;
  padding-left: 15px;
}
.about-hero-content h1 {
  font-size: 50px;
  color: #ffffff;
}
.about-hero-content p {
  font-size: 24px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: 300;
}
.about-hero-image {
  display: grid;
  justify-items: end;
}
.about-hero-image {
  position: relative;
}
.about-hero-image img {
  width: 300px;
}
.about-hero-image::after {
  content: "";
  position: absolute;
  left: 249px;
  bottom: 0;
  height: 5px;
  width: 100px;
  background-color: #ffc631;
  border-radius: 0 0 7px 0;
}
@media screen and (max-width: 1169px) {
  .about-hero-image::after {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-hero-image {
    display: none;
  }
  .about-hero-content h1 {
    font-size: 40px;
  }
}
